Skip to content

Commit e976053

Browse files
committed
[clang, SystemZ] Fix test case for buildbot.
It seems the automatic Value naming starts on %1 instead of %0 sometimes.
1 parent 19146b9 commit e976053

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clang/test/CodeGen/SystemZ/unaligned-symbols.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,8 @@ unsigned char foo6 () {
105105

106106
// A weak symbol could be replaced with an unaligned one at link time.
107107
// CHECK-LABEL: foo7
108-
// ALIGNED: %0 = load i8, ptr @Weaksym, align 2
109-
// UNALIGN: %0 = load i8, ptr @Weaksym, align 1
108+
// ALIGNED: load i8, ptr @Weaksym, align 2
109+
// UNALIGN: load i8, ptr @Weaksym, align 1
110110
unsigned char __attribute__((weak)) Weaksym = 0;
111111
unsigned char foo7 () {
112112
return Weaksym;

0 commit comments

Comments
 (0)