[llvm] 106657d - [PowerPC][AIX] Fix assertion message on AIX. NFC.

Kai Luo via llvm-commits llvm-commits at lists.llvm.org
Thu Jun 23 21:04:26 PDT 2022


Author: Kai Luo
Date: 2022-06-24T12:03:57+08:00
New Revision: 106657df4cb36b325056efc57c91340d3d85236d

URL: https://github.com/llvm/llvm-project/commit/106657df4cb36b325056efc57c91340d3d85236d
DIFF: https://github.com/llvm/llvm-project/commit/106657df4cb36b325056efc57c91340d3d85236d.diff

LOG: [PowerPC][AIX] Fix assertion message on AIX. NFC.

Fixes build https://lab.llvm.org/buildbot/#/builders/214/builds/1980.

Added: 
    

Modified: 
    llvm/test/CodeGen/PowerPC/cfence-double.ll
    llvm/test/CodeGen/PowerPC/cfence-float.ll

Removed: 
    


################################################################################
diff  --git a/llvm/test/CodeGen/PowerPC/cfence-double.ll b/llvm/test/CodeGen/PowerPC/cfence-double.ll
index 4e3d055dcac9..dfff8ab5a824 100644
--- a/llvm/test/CodeGen/PowerPC/cfence-double.ll
+++ b/llvm/test/CodeGen/PowerPC/cfence-double.ll
@@ -4,7 +4,7 @@
 ; RUN: not --crash llc -opaque-pointers -mtriple=powerpc64-unknown-unknown \
 ; RUN:   < %s 2>&1 | FileCheck %s
 
-; CHECK: Assertion `VT.isInteger() && Operand.getValueType().isInteger() && "Invalid ANY_EXTEND!"' failed
+; CHECK: Assertion{{.*}}VT.isInteger() && Operand.getValueType().isInteger() && "Invalid ANY_EXTEND!"
 
 define double @foo(double* %dp) {
 entry:

diff  --git a/llvm/test/CodeGen/PowerPC/cfence-float.ll b/llvm/test/CodeGen/PowerPC/cfence-float.ll
index 7f949ff10f28..b85112536b3d 100644
--- a/llvm/test/CodeGen/PowerPC/cfence-float.ll
+++ b/llvm/test/CodeGen/PowerPC/cfence-float.ll
@@ -4,7 +4,7 @@
 ; RUN: not --crash llc -opaque-pointers -mtriple=powerpc64-unknown-unknown \
 ; RUN:   < %s 2>&1 | FileCheck %s
 
-; CHECK: Assertion `VT.isInteger() && Operand.getValueType().isInteger() && "Invalid ANY_EXTEND!"' failed
+; CHECK: Assertion{{.*}}VT.isInteger() && Operand.getValueType().isInteger() && "Invalid ANY_EXTEND!"
 
 define float @bar(float* %fp) {
 entry:


        


More information about the llvm-commits mailing list