From 106657df4cb36b325056efc57c91340d3d85236d Mon Sep 17 00:00:00 2001 From: Kai Luo Date: Fri, 24 Jun 2022 12:02:30 +0800 Subject: [PATCH] [PowerPC][AIX] Fix assertion message on AIX. NFC. Fixes build https://lab.llvm.org/buildbot/#/builders/214/builds/1980. --- llvm/test/CodeGen/PowerPC/cfence-double.ll | 2 +- llvm/test/CodeGen/PowerPC/cfence-float.ll | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/llvm/test/CodeGen/PowerPC/cfence-double.ll b/llvm/test/CodeGen/PowerPC/cfence-double.ll index 4e3d055..dfff8ab 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 7f949ff..b851125 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: -- 2.7.4