[llvm-commits] CVS: llvm/test/Regression/CodeGen/Generic/2006-01-18-InvalidBranchOpcodeAssert.ll
Chris Lattner
lattner at cs.uiuc.edu
Sun Aug 27 13:52:15 PDT 2006
Changes in directory llvm/test/Regression/CodeGen/Generic:
2006-01-18-InvalidBranchOpcodeAssert.ll added (r1.1)
---
Log message:
Move this test from Codegen/PowerPC to CodeGen/Generic. It fails on ia64,
but that's not the ppc backend's fault.
---
Diffs of the changes: (+16 -0)
2006-01-18-InvalidBranchOpcodeAssert.ll | 16 ++++++++++++++++
1 files changed, 16 insertions(+)
Index: llvm/test/Regression/CodeGen/Generic/2006-01-18-InvalidBranchOpcodeAssert.ll
diff -c /dev/null llvm/test/Regression/CodeGen/Generic/2006-01-18-InvalidBranchOpcodeAssert.ll:1.1
*** /dev/null Sun Aug 27 15:52:10 2006
--- llvm/test/Regression/CodeGen/Generic/2006-01-18-InvalidBranchOpcodeAssert.ll Sun Aug 27 15:52:00 2006
***************
*** 0 ****
--- 1,16 ----
+ ; RUN: llvm-as < %s | llc
+ ; This crashed the PPC backend.
+
+ void %test() {
+ %tmp125 = call bool %llvm.isunordered.f64( double 0.000000e+00, double 0.000000e+00 ) ; <bool> [#uses=1]
+ br bool %tmp125, label %bb154, label %cond_false133
+
+ cond_false133: ; preds = %entry
+ ret void
+
+ bb154: ; preds = %entry
+ %tmp164 = seteq uint 0, 0 ; <bool> [#uses=0]
+ ret void
+ }
+
+ declare bool %llvm.isunordered.f64(double, double)
More information about the llvm-commits
mailing list