blob: 9f0b080d9508c515c67f54c75888f99918d9af97 [file] [log] [blame]
// RUN: clang -emit-llvm < %s -o %t &&
// RUN: grep "store i32 351, i32*" %t &&
// RUN: grep "w = global %0 <{ i32 2, i8 0, i8 0, i8 0, i8 0 }>" %t &&
// RUN: grep "y = global %1 <{ double 7.300000e+01 }>" %t
union u { int i; double d; };
void foo() {
union u ola = (union u) 351;
}
union u w = (union u)2;
union u y = (union u)73.0;