blob: 9f1cdda18d10757970d717fd138b7103a68bd010 [file] [log] [blame]
Daniel Dunbar41e11a92010-09-17 23:21:43 +00001// RUN: %clang_cc1 -triple i386-unknown-unknown -emit-llvm -o %t %s
2// RUN: FileCheck < %t %s
3//
4// FIXME: Note that we don't currently get the ABI right here. f0() should be
5// f0(i8*).
6
7typedef union {
8 void *f0;
9} transp_t0 __attribute__((transparent_union));
10
11void f0(transp_t0 obj);
12
13// CHECK: define void @f1_0(i32* %a0)
14// CHECK: call void @f0(%union.anon* byval %{{.*}})
15// CHECK: }
16void f1_0(int *a0) {
17 f0(a0);
18}
19
20void f1_1(int *a0) {
21 f0((transp_t0) { a0 });
22}