Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:test2

6 struct test2 { int x; int y; } __attribute__((aligned (16)));
15 // CHECK: define void @test2(i32 signext %x, %struct.test2* byval align 16 %y)
16 void test2 (int x, struct test2 y)
48 // CHECK: define void @test2va(%struct.test2* noalias sret %agg.result, i32 signext %x, ...)
56 // CHECK: bitcast i8* %ap.align to %struct.test2*
57 struct test2 test2va (int x, ...)
59 struct test2 y;
62 y = va_arg (ap, struct test2);