diff options
author | Jakub Staszak <kubastaszak@gmail.com> | 2012-12-31 18:26:42 +0000 |
---|---|---|
committer | Jakub Staszak <kubastaszak@gmail.com> | 2012-12-31 18:26:42 +0000 |
commit | 526057921dcb57e0d51d60ddb0f5ce16596c307f (patch) | |
tree | e2b75d18c765f167faa1b0aebe2592c8c0c372dd /test | |
parent | 5b712efd9a4d29119ce136d46a23454bdc103f68 (diff) | |
download | external_llvm-526057921dcb57e0d51d60ddb0f5ce16596c307f.zip external_llvm-526057921dcb57e0d51d60ddb0f5ce16596c307f.tar.gz external_llvm-526057921dcb57e0d51d60ddb0f5ce16596c307f.tar.bz2 |
Add extra CHECK to make sure that 'or' instruction was replaced.
Also add an assert to avoid confusion in the code where is known that C1 <= C2.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171310 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/Transforms/InstCombine/icmp.ll | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/Transforms/InstCombine/icmp.ll b/test/Transforms/InstCombine/icmp.ll index 5102a9c..8fb6144 100644 --- a/test/Transforms/InstCombine/icmp.ll +++ b/test/Transforms/InstCombine/icmp.ll @@ -699,6 +699,7 @@ define i1 @test68(i32 %x) nounwind uwtable { ; CHECK: @test69 ; CHECK: %1 = and i32 %c, -33 ; CHECK: %2 = icmp eq i32 %1, 65 +; CHECK: ret i1 %2 define i1 @test69(i32 %c) nounwind uwtable { %1 = icmp eq i32 %c, 97 %2 = icmp eq i32 %c, 65 |