Lines Matching full:void
5 // CHECK: define void @test0(i32* %{{.*}}, i32 %{{.*}})
6 void test0(int *x, int y) {
9 // CHECK: define void @test1(i32* noalias %{{.*}}, i32 %{{.*}})
10 void test1(int * restrict x, int y) {
13 // CHECK: define void @test2(i32* %{{.*}}, i32* noalias %{{.*}})
14 void test2(int *x, int * restrict y) {
19 // CHECK: define void @test3(i32* noalias %{{.*}}, i32 %{{.*}})
20 void test3(rp x, int y) {
23 // CHECK: define void @test4(i32* %{{.*}}, i32* noalias %{{.*}})
24 void test4(int *x, rp y) {