blob: fd1eb5d440571f38615fb9e08c327ce2c460f546 [file] [log] [blame]
Dale Johannesenf0d6daf2008-04-14 17:56:54 +00001; RUN: llvm-as < %s | llc -march=ppc32 | grep or | count 3
Chris Lattner6c36fb52008-01-08 06:46:30 +00002; This should produce one 'or' or 'cror' instruction per function.
3
Chris Lattner6c36fb52008-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