[clang] e976053 - [clang, SystemZ] Fix test case for buildbot.
Jonas Paulsson via cfe-commits
cfe-commits at lists.llvm.org
Sat Jan 27 10:04:18 PST 2024
Author: Jonas Paulsson
Date: 2024-01-27T19:02:36+01:00
New Revision: e976053a63c251e9b65733ed3574e5c3de62084c
URL: https://github.com/llvm/llvm-project/commit/e976053a63c251e9b65733ed3574e5c3de62084c
DIFF: https://github.com/llvm/llvm-project/commit/e976053a63c251e9b65733ed3574e5c3de62084c.diff
LOG: [clang, SystemZ] Fix test case for buildbot.
It seems the automatic Value naming starts on %1 instead of %0 sometimes.
Added:
Modified:
clang/test/CodeGen/SystemZ/unaligned-symbols.c
Removed:
################################################################################
diff --git a/clang/test/CodeGen/SystemZ/unaligned-symbols.c b/clang/test/CodeGen/SystemZ/unaligned-symbols.c
index 193e092b99c2b58..31fc211393dd719 100644
--- a/clang/test/CodeGen/SystemZ/unaligned-symbols.c
+++ b/clang/test/CodeGen/SystemZ/unaligned-symbols.c
@@ -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;
More information about the cfe-commits
mailing list