summaryrefslogtreecommitdiffstats
path: root/llvm
diff options
context:
space:
mode:
authorSanjay Patel <spatel@rotateright.com>2016-06-05 17:54:56 +0000
committerSanjay Patel <spatel@rotateright.com>2016-06-05 17:54:56 +0000
commit0fab306eb5512b34ded62a588c256232c780c09f (patch)
tree4a753f5cad1f283d98ab027e16b07293b6d78c07 /llvm
parenta6fbc82392160c7fc1a50851165cbcc27677d07f (diff)
downloadbcm5719-llvm-0fab306eb5512b34ded62a588c256232c780c09f.tar.gz
bcm5719-llvm-0fab306eb5512b34ded62a588c256232c780c09f.zip
fix checks
update_test_checks.py got confused matching the variable names. llvm-svn: 271844
Diffstat (limited to 'llvm')
-rw-r--r--llvm/test/Transforms/InstCombine/set.ll6
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/test/Transforms/InstCombine/set.ll b/llvm/test/Transforms/InstCombine/set.ll
index 26614df1607..494a6037901 100644
--- a/llvm/test/Transforms/InstCombine/set.ll
+++ b/llvm/test/Transforms/InstCombine/set.ll
@@ -111,7 +111,7 @@ define i1 @test12(i1 %A) {
define i1 @test13(i1 %A, i1 %B) {
; CHECK-LABEL: @test13(
; CHECK-NEXT: [[CTMP:%.*]] = xor i1 %B, true
-; CHECK-NEXT: [[C:%.*]] = or i1 [[C:%.*]]tmp, %A
+; CHECK-NEXT: [[C:%.*]] = or i1 [[CTMP]], %A
; CHECK-NEXT: ret i1 [[C]]
;
%C = icmp uge i1 %A, %B
@@ -131,7 +131,7 @@ define <2 x i1> @test13vec(<2 x i1> %A, <2 x i1> %B) {
define i1 @test14(i1 %A, i1 %B) {
; CHECK-LABEL: @test14(
; CHECK-NEXT: [[CTMP:%.*]] = xor i1 %A, %B
-; CHECK-NEXT: [[C:%.*]] = xor i1 [[C:%.*]]tmp, true
+; CHECK-NEXT: [[C:%.*]] = xor i1 [[CTMP]], true
; CHECK-NEXT: ret i1 [[C]]
;
%C = icmp eq i1 %A, %B
@@ -192,7 +192,7 @@ endif:
define i1 @test19(i1 %A, i1 %B) {
; CHECK-LABEL: @test19(
; CHECK-NEXT: [[CTMP:%.*]] = xor i1 %A, %B
-; CHECK-NEXT: [[C:%.*]] = xor i1 [[C:%.*]]tmp, true
+; CHECK-NEXT: [[C:%.*]] = xor i1 [[CTMP]], true
; CHECK-NEXT: ret i1 [[C]]
;
%a = zext i1 %A to i32
OpenPOWER on IntegriCloud