summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSanjay Patel <spatel@rotateright.com>2018-09-14 17:53:44 +0000
committerSanjay Patel <spatel@rotateright.com>2018-09-14 17:53:44 +0000
commitf7ba0ac0b522563b7021fe13f22bff487bb7737f (patch)
treefdfa428ac2b7cdfff0157ccb6aa788041d05d806
parent1739dbf6a6f8cac7850ca820f338439e1f30d82d (diff)
downloadbcm5719-llvm-f7ba0ac0b522563b7021fe13f22bff487bb7737f.tar.gz
bcm5719-llvm-f7ba0ac0b522563b7021fe13f22bff487bb7737f.zip
[InstCombine] regenerate test checks; NFC
There was a bug in a check line regex that could cause the test to fail with a naming difference. The auto-gen script seems to work as expected now. llvm-svn: 342249
-rw-r--r--llvm/test/Transforms/InstCombine/sink-zext.ll10
1 files changed, 5 insertions, 5 deletions
diff --git a/llvm/test/Transforms/InstCombine/sink-zext.ll b/llvm/test/Transforms/InstCombine/sink-zext.ll
index 11872358678..c03c660562d 100644
--- a/llvm/test/Transforms/InstCombine/sink-zext.ll
+++ b/llvm/test/Transforms/InstCombine/sink-zext.ll
@@ -11,7 +11,7 @@ define i64 @test1(i32 %V) {
; CHECK-NEXT: [[CALL1:%.*]] = call i32 @callee(), !range !0
; CHECK-NEXT: [[CALL2:%.*]] = call i32 @callee(), !range !0
; CHECK-NEXT: [[ADDCONV:%.*]] = add nuw nsw i32 [[CALL1]], [[CALL2]]
-; CHECK-NEXT: [[ADD:%.*]] = zext i32 [[ADD:%.*]]conv to i64
+; CHECK-NEXT: [[ADD:%.*]] = zext i32 [[ADDCONV]] to i64
; CHECK-NEXT: ret i64 [[ADD]]
;
%call1 = call i32 @callee(), !range !0
@@ -27,8 +27,8 @@ define i64 @test2(i32 %V) {
; CHECK-NEXT: [[CALL1:%.*]] = call i32 @callee(), !range !0
; CHECK-NEXT: [[CALL2:%.*]] = call i32 @callee(), !range !0
; CHECK-NEXT: [[ADD:%.*]] = add nuw nsw i32 [[CALL1]], [[CALL2]]
-; CHECK-NEXT: [[ZEXT1:%.*]] = zext i32 [[ADD]] to i64
-; CHECK-NEXT: ret i64 [[ZEXT1]]
+; CHECK-NEXT: [[TMP1:%.*]] = zext i32 [[ADD]] to i64
+; CHECK-NEXT: ret i64 [[TMP1]]
;
%call1 = call i32 @callee(), !range !0
%call2 = call i32 @callee(), !range !0
@@ -58,8 +58,8 @@ define i64 @test4(i32 %V) {
; CHECK-NEXT: [[CALL1:%.*]] = call i32 @callee(), !range !0
; CHECK-NEXT: [[CALL2:%.*]] = call i32 @callee(), !range !0
; CHECK-NEXT: [[ADD:%.*]] = mul nuw nsw i32 [[CALL1]], [[CALL2]]
-; CHECK-NEXT: [[ZEXT1:%.*]] = zext i32 [[ADD]] to i64
-; CHECK-NEXT: ret i64 [[ZEXT1]]
+; CHECK-NEXT: [[TMP1:%.*]] = zext i32 [[ADD]] to i64
+; CHECK-NEXT: ret i64 [[TMP1]]
;
%call1 = call i32 @callee(), !range !0
%call2 = call i32 @callee(), !range !0
OpenPOWER on IntegriCloud