Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:test4

8 struct test4 { int x; int y; int z; };
28 // CHECK: define void @test4(i32 signext %x, [2 x i64] %y.coerce)
29 void test4 (int x, struct test4 y)
116 // CHECK-LABEL: define void @test4va(%struct.test4* noalias sret %agg.result, i32 signext %x, ...)
117 // CHECK: %y = alloca %struct.test4, align 4
121 // CHECK: [[T0:%.*]] = bitcast i8* %[[CUR]] to %struct.test4*
122 // CHECK: [[DEST:%.*]] = bitcast %struct.test4* %y to i8*
123 // CHECK: [[SRC:%.*]] = bitcast %struct.test4* [[T0]] to i8*
125 struct test4 test4va (int x, ...)
127 struct test4 y;
130 y = va_arg (ap, struct test4);