blob: 11673cf92827cf25a548364e07f45b50cd33033d [file] [log] [blame]
Chris Lattnerae37c2a2005-01-02 02:30:04 +00001;; X's live range extends beyond the shift, so the register allocator
Chris Lattner52da8842006-03-24 07:13:29 +00002;; cannot coalesce it with Y. Because of this, a copy needs to be
Chris Lattnerae37c2a2005-01-02 02:30:04 +00003;; 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
Reid Spencerd3b1f6d2007-04-15 22:20:47 +00009; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -x86-asm-syntax=intel | \
10; RUN: not grep {mov E.X, E.X}
Chris Lattnerae37c2a2005-01-02 02:30:04 +000011
Chris Lattnerae37c2a2005-01-02 02:30:04 +000012%G = external global int
13
14int %test1(int %X) {
15 %Z = shl int %X, ubyte 2
16 volatile store int %Z, int* %G
17 ret int %X
18}