diff options
author | Chris Lattner <sabre@nondot.org> | 2002-05-07 20:22:12 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-05-07 20:22:12 +0000 |
commit | e473a34caf58da20a97982ee6f9ea41b89c949ad (patch) | |
tree | 8d6f310cb5e70fd096c31599c01b4622277e200a /test/Transforms/ConstProp | |
parent | 65f1b895bb1c196409747c60373b2fbfbf5fe6b4 (diff) | |
download | external_llvm-e473a34caf58da20a97982ee6f9ea41b89c949ad.zip external_llvm-e473a34caf58da20a97982ee6f9ea41b89c949ad.tar.gz external_llvm-e473a34caf58da20a97982ee6f9ea41b89c949ad.tar.bz2 |
Add testcase for not expressions
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2539 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/ConstProp')
-rw-r--r-- | test/Transforms/ConstProp/nottest.ll | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/test/Transforms/ConstProp/nottest.ll b/test/Transforms/ConstProp/nottest.ll new file mode 100644 index 0000000..d5df709 --- /dev/null +++ b/test/Transforms/ConstProp/nottest.ll @@ -0,0 +1,22 @@ +; Ensure constant propogation of 'not' instructions is working correctly. + +; RUN: if as < %s | opt -constprop | dis | grep not +; RUN: then exit 1 +; RUN: else exit 0 +; RUN: fi + +int "test1"() { + %R = not int 4 + ret int %R +} + +int "test2"() { + %R = not int -23 + ret int %R +} + +bool "test3"() { + %R = not bool true + ret bool %R +} + |