blob: 7fd99fe93c89bdaa14e0e6eb2f4bf6056e46779d [file] [log] [blame]
Chris Lattnerae37c2a2005-01-02 02:30:04 +00001;; X's live range extends beyond the shift, so the register allocator
2;; cannot coallesce 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-as < %s | llc -march=x86 -x86-asm-syntax=intel | not grep 'mov %E.X, %E.X'
10
11%G = external global int
12
13int %test1(int %X, int %Y) {
14 %Z = add int %X, %Y
15 volatile store int %Y, int* %G
16 volatile store int %Z, int* %G
17 ret int %X
18}
19
20int %test2(int %X) {
21 %Z = add int %X, 1 ;; inc
22 volatile store int %Z, int* %G
23 ret int %X
24}