blob: 897fb78db22d98b1ec098ce4bd0ce3c98464fce0 [file] [log] [blame]
Tanya Lattner53a66d12008-02-19 01:41:04 +00001; RUN: llvm-as < %s | llc -pre-RA-sched=default
2; RUN: llvm-as < %s | llc -pre-RA-sched=list-td
3; RUN: llvm-as < %s | llc -pre-RA-sched=list-tdrr
4; RUN: llvm-as < %s | llc -pre-RA-sched=list-burr
Dan Gohmaneac9cae2008-11-20 19:26:04 +00005; RUN: llvm-as < %s | llc -pre-RA-sched=fast
Jim Laskey93d537c2006-08-03 20:49:29 +00006; PR859
7
Tanya Lattner53a66d12008-02-19 01:41:04 +00008declare i32 @printf(i8*, i32, float)
Jim Laskey93d537c2006-08-03 20:49:29 +00009
Tanya Lattner53a66d12008-02-19 01:41:04 +000010define i32 @testissue(i32 %i, float %x, float %y) {
Jim Laskey93d537c2006-08-03 20:49:29 +000011 br label %bb1
Jim Laskey93d537c2006-08-03 20:49:29 +000012
Tanya Lattner53a66d12008-02-19 01:41:04 +000013bb1: ; preds = %bb1, %0
14 %x1 = mul float %x, %y ; <float> [#uses=1]
15 %y1 = mul float %y, 7.500000e-01 ; <float> [#uses=1]
16 %z1 = add float %x1, %y1 ; <float> [#uses=1]
17 %x2 = mul float %x, 5.000000e-01 ; <float> [#uses=1]
18 %y2 = mul float %y, 0x3FECCCCCC0000000 ; <float> [#uses=1]
19 %z2 = add float %x2, %y2 ; <float> [#uses=1]
20 %z3 = add float %z1, %z2 ; <float> [#uses=1]
21 %i1 = shl i32 %i, 3 ; <i32> [#uses=1]
22 %j1 = add i32 %i, 7 ; <i32> [#uses=1]
23 %m1 = add i32 %i1, %j1 ; <i32> [#uses=2]
24 %b = icmp sle i32 %m1, 6 ; <i1> [#uses=1]
25 br i1 %b, label %bb1, label %bb2
26
27bb2: ; preds = %bb1
28 %Msg = inttoptr i64 0 to i8* ; <i8*> [#uses=1]
29 call i32 @printf( i8* %Msg, i32 %m1, float %z3 ) ; <i32>:1 [#uses=0]
30 ret i32 0
31}