Christopher Lamb | 380c627 | 2007-08-10 21:18:25 +0000 | [diff] [blame] | 1 | ; RUN: llvm-as < %s | llc -march=x86 | grep {leal} |
Dan Gohman | 5766ac7 | 2007-10-22 20:40:42 +0000 | [diff] [blame] | 2 | ; XFAIL: * |
| 3 | ; This test is XFAIL'd because strength-reduction was improved to |
| 4 | ; avoid emitting the lea, so it longer tests whether the 16-bit |
| 5 | ; lea is avoided. |
Christopher Lamb | 380c627 | 2007-08-10 21:18:25 +0000 | [diff] [blame] | 6 | |
| 7 | @X = global i16 0 ; <i16*> [#uses=1] |
| 8 | @Y = global i16 0 ; <i16*> [#uses=1] |
| 9 | |
| 10 | define void @_Z3fooi(i32 %N) { |
| 11 | entry: |
| 12 | %tmp1019 = icmp sgt i32 %N, 0 ; <i1> [#uses=1] |
| 13 | br i1 %tmp1019, label %bb, label %return |
| 14 | |
| 15 | bb: ; preds = %bb, %entry |
| 16 | %i.014.0 = phi i32 [ 0, %entry ], [ %indvar.next, %bb ] ; <i32> [#uses=2] |
| 17 | %tmp1 = trunc i32 %i.014.0 to i16 ; <i16> [#uses=2] |
| 18 | volatile store i16 %tmp1, i16* @X, align 2 |
| 19 | %tmp34 = shl i16 %tmp1, 2 ; <i16> [#uses=1] |
| 20 | volatile store i16 %tmp34, i16* @Y, align 2 |
| 21 | %indvar.next = add i32 %i.014.0, 1 ; <i32> [#uses=2] |
| 22 | %exitcond = icmp eq i32 %indvar.next, %N ; <i1> [#uses=1] |
| 23 | br i1 %exitcond, label %return, label %bb |
| 24 | |
| 25 | return: ; preds = %bb, %entry |
| 26 | ret void |
Dan Gohman | 8c89a50 | 2007-08-15 13:36:28 +0000 | [diff] [blame] | 27 | } |