mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-14 15:39:00 +00:00
38caf19333
Currently we have a number of tests that fail with -verify-machineinstrs. To detect this cases earlier we add the option to the testcases with the exception of tests that will currently fail with this option. PR 27456 keeps track of this failures. No code review, as discussed with Hal Finkel. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@277624 91177308-0d34-0410-b5e6-96231b3b80d8
16 lines
309 B
LLVM
16 lines
309 B
LLVM
; RUN: llc -verify-machineinstrs < %s -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
|
|
}
|
|
|