blob: 2c046ffc08413b4c3b8aea06e5b17c03a305d6e5 [file] [log] [blame]
Evan Chengfc937c92008-08-28 23:48:31 +00001; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 | grep ucomisd | grep CPI | count 2
2
3define i32 @test(double %A) nounwind {
4 entry:
5 %tmp2 = fcmp ogt double %A, 1.500000e+02; <i1> [#uses=1]
Evan Chengb488ca32008-08-29 23:22:12 +00006 %tmp5 = fcmp ult double %A, 7.500000e+01; <i1> [#uses=1]
Evan Chengfc937c92008-08-28 23:48:31 +00007 %bothcond = or i1 %tmp2, %tmp5; <i1> [#uses=1]
8 br i1 %bothcond, label %bb8, label %bb12
9
10 bb8:; preds = %entry
11 %tmp9 = tail call i32 (...)* @foo( ) nounwind ; <i32> [#uses=1]
12 ret i32 %tmp9
13
14 bb12:; preds = %entry
15 ret i32 32
16}
17
18declare i32 @foo(...)