2010-01-13 01:30:23 +01:00
|
|
|
; RUN: llc < %s -march=x86-64 | FileCheck %s
|
|
|
|
; rdar://7529457
|
|
|
|
|
|
|
|
define i64 @t(i64 %A, i64 %B, i32* %P, i64 *%P2) nounwind {
|
|
|
|
; CHECK: t:
|
2011-04-14 03:46:37 +02:00
|
|
|
; CHECK: movslq %e{{.*}}, %rax
|
2010-01-13 01:30:23 +01:00
|
|
|
; CHECK: movq %rax
|
|
|
|
; CHECK: movl %eax
|
|
|
|
%C = add i64 %A, %B
|
|
|
|
%D = trunc i64 %C to i32
|
2011-11-27 07:54:59 +01:00
|
|
|
store volatile i32 %D, i32* %P
|
2010-01-13 01:30:23 +01:00
|
|
|
%E = shl i64 %C, 32
|
|
|
|
%F = ashr i64 %E, 32
|
2011-11-27 07:54:59 +01:00
|
|
|
store volatile i64 %F, i64 *%P2
|
|
|
|
store volatile i32 %D, i32* %P
|
2010-01-13 01:30:23 +01:00
|
|
|
ret i64 undef
|
|
|
|
}
|