Stackmap shadows should consider call returns a branch target.
[oota-llvm.git] / test / CodeGen / X86 / avx-bitcast.ll
1 ; RUN: llc < %s -O0 -mtriple=x86_64-apple-darwin -mcpu=corei7-avx -mattr=+avx | FileCheck %s
2
3 ; CHECK: vmovsd (%
4 ; CHECK-NEXT: vmovq %xmm
5 define i64 @bitcasti64tof64() {
6   %a = load double* undef
7   %b = bitcast double %a to i64
8   ret i64 %b
9 }
10