aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/cast-to-union.c
blob: 1f7e0457706d6434a909469682de61cd146e7415 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// RUN: clang-cc -emit-llvm  %s -o - | FileCheck %s
// CHECK: w = global %0 { i32 2, [4 x i8] undef }
// CHECK: y = global %union.u { double 7.300000e+0{{[0]*}}1 }
// CHECK: store i32 351, i32

union u { int i; double d; };

void foo() {
  union u ola = (union u) 351;
  union u olb = (union u) 1.0;
}

union u w = (union u)2;
union u y = (union u)73.0;