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, %struct.test4* byval align 8 %y)
29 void test4 (int x, struct test4 y)
86 // CHECK: define void @test4va(%struct.test4* noalias sret %agg.result, i32 signext %x, ...)
90 // CHECK: bitcast i8* %ap.cur to %struct.test4*
91 struct test4 test4va (int x, ...)
93 struct test4 y;
96 y = va_arg (ap, struct test4);