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