[llvm-branch-commits] [llvm] Update compiler version expected that seems to be embedded in CHECK l… (PR #79523)
Tom Stellard via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Thu Jan 25 15:33:52 PST 2024
https://github.com/tstellar created https://github.com/llvm/llvm-project/pull/79523
…ine of test at llvm/test/CodeGen/SystemZ/zos-ppa2.ll.
The test contains a CHECK line which verifies an .ascii line which originally checks for 18001970010100000000. After the bump of the compiler version to 19, the test started to fail with the string now being 19001970010100000000.
This should fix this failing test on bots.
(cherry picked from commit a01195ff5cc3d7fd084743b1f47007645bb385f4)
>From 4236d56141be3a421d9e7fe8bb7f1ba1663ec97a Mon Sep 17 00:00:00 2001
From: Douglas Yung <douglas.yung at sony.com>
Date: Tue, 23 Jan 2024 22:02:27 -0800
Subject: [PATCH] Update compiler version expected that seems to be embedded in
CHECK line of test at llvm/test/CodeGen/SystemZ/zos-ppa2.ll.
The test contains a CHECK line which verifies an .ascii line which originally checks
for 18001970010100000000. After the bump of the compiler version to 19, the test
started to fail with the string now being 19001970010100000000.
This should fix this failing test on bots.
(cherry picked from commit a01195ff5cc3d7fd084743b1f47007645bb385f4)
---
llvm/test/CodeGen/SystemZ/zos-ppa2.ll | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/llvm/test/CodeGen/SystemZ/zos-ppa2.ll b/llvm/test/CodeGen/SystemZ/zos-ppa2.ll
index f54f654b804a23..2a686563388a47 100644
--- a/llvm/test/CodeGen/SystemZ/zos-ppa2.ll
+++ b/llvm/test/CodeGen/SystemZ/zos-ppa2.ll
@@ -24,7 +24,7 @@
; CHECK: .byte 0
; CHECK: .byte 3
; CHECK: .short 30
-; CHECK: .ascii "\323\323\345\324@@@@@@\361\370\360\360\361\371\367\360\360\361\360\361\360\360\360\360\360\360\360\360"
+; CHECK: .ascii "\323\323\345\324@@@@@@\361\371\360\360\361\371\367\360\360\361\360\361\360\360\360\360\360\360\360\360"
define void @void_test() {
entry:
ret void
More information about the llvm-branch-commits
mailing list