Skip to content

Commit 494ba60

Browse files
author
Thomas Preud'homme
committed
[PowerPC, test] Fix use of undef FileCheck var
Commit 6646033 removed the definition of variable RESULT used in two CHECK-NOT directives in LLVM test CodeGen/PowerPC/ppc64-i128-abi.ll. This commit replaces the uses by the regex that was used to define that variable. Reviewed By: nemanjai Differential Revision: https://reviews.llvm.org/D99868
1 parent af67deb commit 494ba60

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/test/CodeGen/PowerPC/ppc64-i128-abi.ll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,12 +105,12 @@ define <1 x i128> @v1i128_increment_by_val(<1 x i128> %a, <1 x i128> %b) nounwin
105105
; CHECK-BE-LABEL: @v1i128_increment_by_val
106106
; CHECK-BE-NOT: xxswapd {{[0-9]+}}, 34
107107
; CHECK-BE-NOT: xxswapd {{[0-9]+}}, 35
108-
; CHECK-BE-NOT: xxswapd 34, [[RESULT]]
108+
; CHECK-BE-NOT: xxswapd 34, {{[0-9]+}}
109109
; CHECK-BE: adduqm 2, 2, 3
110110
; CHECK-BE: blr
111111

112112
; CHECK-NOVSX-LABEL: @v1i128_increment_by_val
113-
; CHECK-NOVSX-NOT: xxswapd 34, [[RESULT]]
113+
; CHECK-NOVSX-NOT: xxswapd 34, {{[0-9]+}}
114114
; CHECK-NOVSX: adduqm 2, 2, 3
115115
; CHECK-NOVSX: blr
116116
}

0 commit comments

Comments
 (0)