[clang, SystemZ] Fix test case for buildbot.

It seems the automatic Value naming starts on %1 instead of %0 sometimes.
This commit is contained in:
Jonas Paulsson 2024-01-27 18:59:17 +01:00
parent 19146b9712
commit e976053a63

View File

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