1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 12:33:33 +02:00
llvm-mirror/test/CodeGen/X86/2008-10-24-FlippedCompare.ll
Duncan Sands a6bbc047d5 Turn on LegalizeTypes, the new type legalization
codegen infrastructure, by default.  Please report
any breakage to the mailing lists.

llvm-svn: 58232
2008-10-27 08:42:46 +00:00

18 lines
400 B
LLVM

; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 -o - | not grep {ucomiss\[^,\]*esp}
define void @f(float %wt) {
entry:
%0 = fcmp ogt float %wt, 0.000000e+00 ; <i1> [#uses=1]
%1 = tail call i32 @g(i32 44) ; <i32> [#uses=3]
%2 = inttoptr i32 %1 to i8* ; <i8*> [#uses=2]
br i1 %0, label %bb, label %bb1
bb: ; preds = %entry
ret void
bb1: ; preds = %entry
ret void
}
declare i32 @g(i32)