diff options
author | Chris Lattner <sabre@nondot.org> | 2007-04-09 23:51:49 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-04-09 23:51:49 +0000 |
commit | 5c05fa0d0bcfe97ef5d99fcb71e24f25fe6cd5db (patch) | |
tree | e210b30dc7c27accf50ba07cfb9f382d2f408a99 | |
parent | 2da8da46ba48b857a2e3e71a97c18ebb23c14af5 (diff) |
new testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35851 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Transforms/InstCombine/set.ll | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/Transforms/InstCombine/set.ll b/test/Transforms/InstCombine/set.ll index ca1ccffe6b..b6ab54392e 100644 --- a/test/Transforms/InstCombine/set.ll +++ b/test/Transforms/InstCombine/set.ll @@ -145,3 +145,8 @@ int %test24(uint %a) { ret int %tmp.3 } +bool %test25(uint %A) { + %B = and uint %A, 2 + %C = setgt uint %B, 2 + ret bool %C +} |