Reid Spencer | d05b67d | 2006-12-02 20:38:10 +0000 | [diff] [blame] | 1 | ; RUN: llvm-upgrade %s | llvm-as | llc |
Tanya Lattner | 2393a24 | 2004-11-06 23:08:26 +0000 | [diff] [blame] | 2 | |
Vikram S. Adve | a7a1c7e | 2002-07-10 21:54:05 +0000 | [diff] [blame] | 3 | implementation |
| 4 | declare int "printf"(sbyte*, int, float) |
| 5 | |
| 6 | |
| 7 | int "testissue"(int %i, float %x, float %y) |
| 8 | begin |
Chris Lattner | 9067068 | 2002-07-10 22:31:09 +0000 | [diff] [blame] | 9 | br label %bb1 |
Vikram S. Adve | a7a1c7e | 2002-07-10 21:54:05 +0000 | [diff] [blame] | 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 |
Dale Johannesen | c2ec2ba | 2007-09-05 17:50:36 +0000 | [diff] [blame] | 16 | %y2 = mul float %y, 0x3FECCCCCC0000000 ;; y2 |
Vikram S. Adve | a7a1c7e | 2002-07-10 21:54:05 +0000 | [diff] [blame] | 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 |