blob: fc770f9028ce7bb5a17ed3e125cbd4ac821db9fd [file] [log] [blame]
Dale Johannesen235f7fb2008-04-08 00:14:17 +00001; RUN: llvm-as < %s | llc -march=ppc32 -disable-required-unwind-tables | grep or | count 3
Chris Lattnerfe39edd2008-01-08 06:46:30 +00002; This should produce one 'or' or 'cror' instruction per function.
3
Chris Lattnerfe39edd2008-01-08 06:46:30 +00004define i32 @test(double %x, double %y) nounwind {
5entry:
6 %tmp3 = fcmp ole double %x, %y ; <i1> [#uses=1]
7 %tmp345 = zext i1 %tmp3 to i32 ; <i32> [#uses=1]
8 ret i32 %tmp345
9}
10
11define i32 @test2(double %x, double %y) nounwind {
12entry:
13 %tmp3 = fcmp one double %x, %y ; <i1> [#uses=1]
14 %tmp345 = zext i1 %tmp3 to i32 ; <i32> [#uses=1]
15 ret i32 %tmp345
16}
17
18define i32 @test3(double %x, double %y) nounwind {
19entry:
20 %tmp3 = fcmp ugt double %x, %y ; <i1> [#uses=1]
21 %tmp34 = zext i1 %tmp3 to i32 ; <i32> [#uses=1]
22 ret i32 %tmp34
23}
24