blob: 3f339041eb36dcb02fc6b1706e9ba3c47a7d198c [file] [log] [blame]
Nuno Lopes7e916272009-01-15 20:14:33 +00001// RUN: clang -emit-llvm < %s | grep "store i32 351, i32*"
2
3union u { int i; };
4
5void foo() {
6 union u ola = (union u) 351;
7}
8
9// FIXME: not working yet
10// union u w = (union u)2;