2005-01-02 03:30:04 +01:00
|
|
|
;; X's live range extends beyond the shift, so the register allocator
|
2006-03-24 08:13:29 +01:00
|
|
|
;; cannot coalesce it with Y. Because of this, a copy needs to be
|
2005-01-02 03:30:04 +01:00
|
|
|
;; emitted before the shift to save the register value before it is
|
|
|
|
;; clobbered. However, this copy is not needed if the register
|
|
|
|
;; allocator turns the shift into an LEA. This also occurs for ADD.
|
|
|
|
|
|
|
|
; Check that the shift gets turned into an LEA.
|
|
|
|
|
2009-09-09 01:54:48 +02:00
|
|
|
; RUN: llc < %s -march=x86 -x86-asm-syntax=intel | \
|
2007-04-16 00:20:47 +02:00
|
|
|
; RUN: not grep {mov E.X, E.X}
|
2005-01-02 03:30:04 +01:00
|
|
|
|
2008-02-21 08:42:26 +01:00
|
|
|
@G = external global i32 ; <i32*> [#uses=1]
|
2005-01-02 03:30:04 +01:00
|
|
|
|
2008-02-21 08:42:26 +01:00
|
|
|
define i32 @test1(i32 %X) {
|
|
|
|
%Z = shl i32 %X, 2 ; <i32> [#uses=1]
|
2011-11-27 07:54:59 +01:00
|
|
|
store volatile i32 %Z, i32* @G
|
2008-02-21 08:42:26 +01:00
|
|
|
ret i32 %X
|
2005-01-02 03:30:04 +01:00
|
|
|
}
|
2008-02-21 08:42:26 +01:00
|
|
|
|