[llvm-commits] [llvm] r72539 - /llvm/trunk/test/CodeGen/PowerPC/2009-05-28-LegalizeBRCC.ll

Eli Friedman eli.friedman at gmail.com
Thu May 28 14:04:35 PDT 2009


Author: efriedma
Date: Thu May 28 16:04:35 2009
New Revision: 72539

URL: http://llvm.org/viewvc/llvm-project?rev=72539&view=rev
Log:
Add explicit test for PR4280.


Added:
    llvm/trunk/test/CodeGen/PowerPC/2009-05-28-LegalizeBRCC.ll

Added: llvm/trunk/test/CodeGen/PowerPC/2009-05-28-LegalizeBRCC.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/PowerPC/2009-05-28-LegalizeBRCC.ll?rev=72539&view=auto

==============================================================================
--- llvm/trunk/test/CodeGen/PowerPC/2009-05-28-LegalizeBRCC.ll (added)
+++ llvm/trunk/test/CodeGen/PowerPC/2009-05-28-LegalizeBRCC.ll Thu May 28 16:04:35 2009
@@ -0,0 +1,15 @@
+; RUN: llvm-as < %s | llc -mtriple=powerpc-apple-darwin10
+; PR4280
+
+define i32 @__fixunssfsi(float %a) nounwind readnone {
+entry:
+	%0 = fcmp ult float %a, 0x41E0000000000000		; <i1> [#uses=1]
+	br i1 %0, label %bb1, label %bb
+
+bb:		; preds = %entry
+	ret i32 1
+
+bb1:		; preds = %entry
+	ret i32 0
+}
+





More information about the llvm-commits mailing list