[Target/X86] Don't use callee-saved registers in a Win64 tail call on non-Windows.
[oota-llvm.git] / test / CodeGen / PowerPC / setcc_no_zext.ll
index e28d48107d5bec4d729c0dee3dfbd1de11e9443c..467e921f74f1ad0162466793b293c78de9252b2e 100644 (file)
@@ -1,8 +1,13 @@
-; RUN: llvm-as < %s | llc -march=ppc32 -enable-ppc-pattern-isel | not grep rlwinm
+; RUN: llc < %s -march=ppc32 | not grep rlwinm
 
-int %setcc_one_or_zero(int* %a) {
+; FIXME: This optimization has temporarily regressed with crbits enabled by
+; default at the default CodeOpt level.
+; XFAIL: *
+
+define i32 @setcc_one_or_zero(i32* %a) {
 entry:
-       %tmp.1 = setne int* %a, null
-       %inc.1 = cast bool %tmp.1 to int
-       ret int %inc.1
+        %tmp.1 = icmp ne i32* %a, null          ; <i1> [#uses=1]
+        %inc.1 = zext i1 %tmp.1 to i32          ; <i32> [#uses=1]
+        ret i32 %inc.1
 }
+