Change all floating constants that are not exactly
[oota-llvm.git] / test / CodeGen / Generic / sched.ll
1 ; RUN: llvm-upgrade %s | llvm-as | llc
2
3 implementation
4 declare int "printf"(sbyte*, int, float)
5
6
7 int "testissue"(int %i, float %x, float %y)
8 begin
9         br label %bb1
10 bb1:
11         %x1 = mul float %x, %y                  ;; x1
12         %y1 = mul float %y, 0.75                ;; y1
13         %z1 = add float %x1, %y1                ;; z1 = x1 + y1
14         
15         %x2 = mul float %x, 0.5                 ;; x2
16         %y2 = mul float %y, 0x3FECCCCCC0000000  ;; y2
17         %z2 = add float %x2, %y2                ;; z2 = x2 + y2
18         
19         %z3 = add float %z1, %z2                ;; z3 = z1 + z2
20             
21         %i1 = shl int   %i, ubyte 3             ;; i1
22         %j1 = add int   %i, 7                   ;; j1
23         %m1 = add int   %i1, %j1                ;; k1 = i1 + j1
24 ;;      %m1 = div int   %k1, 99                 ;; m1 = k1 / 99
25         
26         %b  = setle int %m1, 6                  ;; (m1 <= 6)?
27         br bool %b, label %bb1, label %bb2
28
29 bb2:
30         %Msg = cast ulong 0 to sbyte *
31         call int %printf(sbyte* %Msg, int %m1, float %z3)
32         ret int 0
33 end