2004-04-12 15:40:25 +00:00
|
|
|
; Linear scan does not currently coalesce any two variables that have
|
|
|
|
; overlapping live intervals. When two overlapping intervals have the same
|
|
|
|
; value, they can be joined though.
|
|
|
|
;
|
2009-09-08 23:54:48 +00:00
|
|
|
; RUN: llc < %s -march=x86 -regalloc=linearscan | \
|
2007-04-15 22:20:47 +00:00
|
|
|
; RUN: not grep {mov %\[A-Z\]\\\{2,3\\\}, %\[A-Z\]\\\{2,3\\\}}
|
2004-04-12 15:40:25 +00:00
|
|
|
|
2008-03-25 04:26:08 +00:00
|
|
|
define i64 @test(i64 %x) {
|
2004-04-12 19:04:22 +00:00
|
|
|
entry:
|
2008-03-25 04:26:08 +00:00
|
|
|
%tmp.1 = mul i64 %x, 4294967297 ; <i64> [#uses=1]
|
|
|
|
ret i64 %tmp.1
|
2004-04-12 15:40:25 +00:00
|
|
|
}
|
2008-03-25 04:26:08 +00:00
|
|
|
|