summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorSanjay Patel <spatel@rotateright.com>2016-06-05 16:29:15 +0000
committerSanjay Patel <spatel@rotateright.com>2016-06-05 16:29:15 +0000
commit0fce208f3b47e342ac3f3890cffd45839c60bc04 (patch)
tree22f691fd64046203af28a7a7e0d71aafac3f712c /test
parent7705b591dfe0ffe71e62c2e60ba6b8793773018c (diff)
update test to FileCheck
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@271837 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/Transforms/InstCombine/2008-07-08-ShiftOneAndOne.ll20
1 files changed, 12 insertions, 8 deletions
diff --git a/test/Transforms/InstCombine/2008-07-08-ShiftOneAndOne.ll b/test/Transforms/InstCombine/2008-07-08-ShiftOneAndOne.ll
index cfca72adf87..b0a17467455 100644
--- a/test/Transforms/InstCombine/2008-07-08-ShiftOneAndOne.ll
+++ b/test/Transforms/InstCombine/2008-07-08-ShiftOneAndOne.ll
@@ -1,10 +1,14 @@
-; RUN: opt < %s -instcombine -S | grep "icmp ne i32 \%a"
-; PR2330
+; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
+; RUN: opt < %s -instcombine -S | FileCheck %s
-define i1 @foo(i32 %a) nounwind {
-entry:
- %tmp15 = shl i32 1, %a ; <i32> [#uses=1]
- %tmp237 = and i32 %tmp15, 1 ; <i32> [#uses=1]
- %toBool = icmp eq i32 %tmp237, 0 ; <i1> [#uses=1]
- ret i1 %toBool
+define i1 @PR2330(i32 %a) {
+; CHECK-LABEL: @PR2330(
+; CHECK-NEXT: [[TOBOOL:%.*]] = icmp ne i32 %a, 0
+; CHECK-NEXT: ret i1 [[TOBOOL]]
+;
+ %tmp15 = shl i32 1, %a
+ %tmp237 = and i32 %tmp15, 1
+ %toBool = icmp eq i32 %tmp237, 0
+ ret i1 %toBool
}
+