aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/ConstProp
diff options
context:
space:
mode:
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
+}
+