blob: 8102f9b6fd737b07114178735771642f1ece159b [file] [log] [blame]
Devang Patelabad06c2007-10-26 19:42:18 +00001// RUN: clang %s -emit-llvm
2
3union {
4 int a;
5 float b;
6} u;
7
8void f() {
9 u.b = 11;
10}
11
12int f2( float __x ) {
13 union{
14 float __f;
15 unsigned int __u;
16 }__u;
17 return (int)(__u.__u >> 31);
18}