Fold FP comparisons where one operand is converted from an integer
[oota-llvm.git] / test / Transforms / ConstProp / nottest.ll
index cfff9aebab01be9dd6cd591bee9b90e9e57f4728..41ea1b3873046e8a9fd425ab9a7e19a0e53c7a13 100644 (file)
@@ -1,22 +1,19 @@
 ; Ensure constant propogation of 'not' instructions is working correctly.
 
-; RUN: if as < %s | opt -constprop -die | dis | grep not
-; RUN: then exit 1
-; RUN: else exit 0
-; RUN: fi
+; RUN: llvm-as < %s | opt -constprop -die | llvm-dis | not grep xor
 
-int "test1"() {
-       %R = not int 4
-       ret int %R
+define i32 @test1() {
+        %R = xor i32 4, -1              ; <i32> [#uses=1]
+        ret i32 %R
 }
 
-int "test2"() {
-       %R = not int -23
-       ret int %R
+define i32 @test2() {
+        %R = xor i32 -23, -1            ; <i32> [#uses=1]
+        ret i32 %R
 }
 
-bool "test3"() {
-       %R = not bool true
-       ret bool %R
+define i1 @test3() {
+        %R = xor i1 true, true          ; <i1> [#uses=1]
+        ret i1 %R
 }