Skip to content

Commit 1df09be

Browse files
committed
fix
Created using spr 1.3.4
2 parents ea09024 + 63c0a82 commit 1df09be

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

clang/test/CodeGen/memtag-globals-asm.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -120,27 +120,27 @@ const int MyClass::my_class_const_int = 1;
120120
// CHECK-J: .globl global_my_class
121121
// CHECK-J: .p2align 4, 0x0
122122
// CHECK-J: .size global_my_class, 16
123-
// CHECK-I: .p2align 4, 0x0
123+
// CHECK-J: .p2align 4, 0x0
124124
MyClass global_my_class;
125125
// CHECK-K: .memtag _ZL14local_my_class
126126
// CHECK-K: .p2align 4, 0x0
127127
// CHECK-K: .size _ZL14local_my_class, 16
128-
// CHECK-I: .p2align 4, 0x0
128+
// CHECK-K: .p2align 4, 0x0
129129
static MyClass local_my_class;
130130

131131
// CHECK-NOT: .memtag _ZL18local_const_string
132132
static const char local_const_string[] = "this is a local string";
133133
// CHECK-L: .memtag _ZL12local_string
134134
// CHECK-L: .p2align 4, 0x0
135135
// CHECK-L: .size _ZL12local_string, 32
136-
// CHECK-I: .p2align 4, 0x0
136+
// CHECK-L: .p2align 4, 0x0
137137
static char local_string[] = "this is a local string";
138138

139139
// CHECK-M: .memtag global_atomic_int
140140
// CHECK-M: .globl global_atomic_int
141141
// CHECK-M: .p2align 4, 0x0
142142
// CHECK-M: .size global_atomic_int, 16
143-
// CHECK-I: .p2align 4, 0x0
143+
// CHECK-M: .p2align 4, 0x0
144144
_Atomic(int) global_atomic_int;
145145
// CHECK-N: .memtag _ZL16local_atomic_int
146146
// CHECK-N: .local _ZL16local_atomic_int
@@ -156,7 +156,7 @@ union MyUnion {
156156
// CHECK-O: .globl global_union
157157
// CHECK-O: .p2align 4, 0x0
158158
// CHECK-O: .size global_union, 16
159-
// CHECK-I: .p2align 4, 0x0
159+
// CHECK-O: .p2align 4, 0x0
160160
MyUnion global_union;
161161
// CHECK-P: .memtag _ZL11local_union
162162
// CHECK-P: .local _ZL11local_union

0 commit comments

Comments
 (0)