Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / CodeGen / X86 / sext-subreg.ll
blob3e54f24d13affe5850bf57f34a16d5127083801f
1 ; RUN: llc < %s -mtriple=x86_64-- | FileCheck %s
2 ; rdar://7529457
4 define i64 @t(i64 %A, i64 %B, ptr %P, ptr%P2) nounwind {
5 ; CHECK-LABEL: t:
6 ; CHECK: movslq %e{{.*}}, %rax
7 ; CHECK: movq %rax
8 ; CHECK: movl %eax
9   %C = add i64 %A, %B
10   %D = trunc i64 %C to i32
11   store volatile i32 %D, ptr %P
12   %E = shl i64 %C, 32
13   %F = ashr i64 %E, 32  
14   store volatile i64 %F, ptr%P2
15   store volatile i32 %D, ptr %P
16   ret i64 undef