2004-04-12 17:40:25 +02: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-09 01:54:48 +02:00
|
|
|
; RUN: llc < %s -march=x86 -regalloc=linearscan | \
|
2007-04-16 00:20:47 +02:00
|
|
|
; RUN: not grep {mov %\[A-Z\]\\\{2,3\\\}, %\[A-Z\]\\\{2,3\\\}}
|
2004-04-12 17:40:25 +02:00
|
|
|
|
2008-03-25 05:26:08 +01:00
|
|
|
define i64 @test(i64 %x) {
|
2004-04-12 21:04:22 +02:00
|
|
|
entry:
|
2008-03-25 05:26:08 +01:00
|
|
|
%tmp.1 = mul i64 %x, 4294967297 ; <i64> [#uses=1]
|
|
|
|
ret i64 %tmp.1
|
2004-04-12 17:40:25 +02:00
|
|
|
}
|
2008-03-25 05:26:08 +01:00
|
|
|
|