aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/ConstProp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-05-07 20:22:12 +0000
committerChris Lattner <sabre@nondot.org>2002-05-07 20:22:12 +0000
commite473a34caf58da20a97982ee6f9ea41b89c949ad (patch)
tree8d6f310cb5e70fd096c31599c01b4622277e200a /test/Transforms/ConstProp
parent65f1b895bb1c196409747c60373b2fbfbf5fe6b4 (diff)
downloadexternal_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.ll22
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
+}
+