Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1 | ;; X's live range extends beyond the shift, so the register allocator |
| 2 | ;; cannot coalesce it with Y. Because of this, a copy needs to be |
| 3 | ;; emitted before the shift to save the register value before it is |
| 4 | ;; clobbered. However, this copy is not needed if the register |
| 5 | ;; allocator turns the shift into an LEA. This also occurs for ADD. |
| 6 | |
| 7 | ; Check that the shift gets turned into an LEA. |
| 8 | |
| 9 | ; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -x86-asm-syntax=intel | \ |
| 10 | ; RUN: not grep {mov E.X, E.X} |
| 11 | |
| 12 | %G = external global int |
| 13 | |
| 14 | int %test1(int %X) { |
| 15 | %Z = shl int %X, ubyte 2 |
| 16 | volatile store int %Z, int* %G |
| 17 | ret int %X |
| 18 | } |