diff options
author | Sanjay Patel <spatel@rotateright.com> | 2016-08-15 21:02:25 +0000 |
---|---|---|
committer | Sanjay Patel <spatel@rotateright.com> | 2016-08-15 21:02:25 +0000 |
commit | 55d87a88ccd096be2e805efc7670d5ec9da4e09f (patch) | |
tree | 377122656e36d2d957de479b729bef98e2ef990a | |
parent | 78db2963f6964b4669c82cf8e6abc408ffe91200 (diff) | |
download | bcm5719-llvm-55d87a88ccd096be2e805efc7670d5ec9da4e09f.tar.gz bcm5719-llvm-55d87a88ccd096be2e805efc7670d5ec9da4e09f.zip |
update tests to use FileCheck and exact checking
llvm-svn: 278741
-rw-r--r-- | llvm/test/Transforms/InstCombine/2008-01-29-AddICmp.ll | 35 |
1 files changed, 25 insertions, 10 deletions
diff --git a/llvm/test/Transforms/InstCombine/2008-01-29-AddICmp.ll b/llvm/test/Transforms/InstCombine/2008-01-29-AddICmp.ll index 1f9c47c4f1e..d1757627ab8 100644 --- a/llvm/test/Transforms/InstCombine/2008-01-29-AddICmp.ll +++ b/llvm/test/Transforms/InstCombine/2008-01-29-AddICmp.ll @@ -1,20 +1,35 @@ -; RUN: opt < %s -instcombine -S | not grep "a.off" +; NOTE: Assertions have been autogenerated by utils/update_test_checks.py +; RUN: opt < %s -instcombine -S | FileCheck %s + ; PR1949 define i1 @test1(i32 %a) { - %a.off = add i32 %a, 4 ; <i32> [#uses=1] - %C = icmp ult i32 %a.off, 4 ; <i1> [#uses=1] - ret i1 %C +; CHECK-LABEL: @test1( +; CHECK-NEXT: [[C:%.*]] = icmp ugt i32 %a, -5 +; CHECK-NEXT: ret i1 [[C]] +; + %b = add i32 %a, 4 + %c = icmp ult i32 %b, 4 + ret i1 %c } define i1 @test2(i32 %a) { - %a.off = sub i32 %a, 4 ; <i32> [#uses=1] - %C = icmp ugt i32 %a.off, -5 ; <i1> [#uses=1] - ret i1 %C +; CHECK-LABEL: @test2( +; CHECK-NEXT: [[C:%.*]] = icmp ult i32 %a, 4 +; CHECK-NEXT: ret i1 [[C]] +; + %b = sub i32 %a, 4 + %c = icmp ugt i32 %b, -5 + ret i1 %c } define i1 @test3(i32 %a) { - %a.off = add i32 %a, 4 ; <i32> [#uses=1] - %C = icmp slt i32 %a.off, 2147483652 ; <i1> [#uses=1] - ret i1 %C +; CHECK-LABEL: @test3( +; CHECK-NEXT: [[C:%.*]] = icmp sgt i32 %a, 2147483643 +; CHECK-NEXT: ret i1 [[C]] +; + %b = add i32 %a, 4 + %c = icmp slt i32 %b, 2147483652 + ret i1 %c } + |