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
5define i64 @bitcasti64tof64() {
6  %a = load double* undef
7  %b = bitcast double %a to i64
8  ret i64 %b
9}
10
11