We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5cf42b commit 6ceabd2Copy full SHA for 6ceabd2
clang/test/CIR/Lowering/array.cpp
@@ -15,10 +15,13 @@ extern int bb[10][5];
15
void f() {
16
int l[10];
17
}
18
-// CHECK: alloca [10 x i32], i64 1, align 16
+// CHECK: define void @f()
19
+// CHECK-NEXT: alloca [10 x i32], i64 1, align 16
20
21
void f2(int p[10]) {}
-// CHECK: alloca ptr, i64 1, align 8
22
+// CHECK: define void @f2(ptr {{%.*}})
23
+// CHECK-NEXT: alloca ptr, i64 1, align 8
24
25
void f3(int pp[10][5]) {}
26
+// CHECK: define void @f3(ptr {{%.*}})
27
0 commit comments