llvm-for-llvmta/tools/clang/test/CodeGen/cast-emit.c
Nils Hölscher 7f403f4f1e added clang
2022-04-25 13:02:35 +02:00

13 lines
213 B
C

// RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s
typedef union {
int i;
float f;
} MyUnion;
void unionf(MyUnion a);
void uniontest(float a) {
f((MyUnion)1.0f);
// CHECK: store float 1.000000e+00
}