aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/X86/avx-bitcast.ll
blob: ecc71be7c0dc22847beebe5523f6c296a81e5b97 (plain)
1
2
3
4
5
6
7
8
9
10
; RUN: llc < %s -O0 -mtriple=x86_64-apple-darwin -mcpu=corei7-avx -mattr=+avx | FileCheck %s

; CHECK: vmovsd (%
; CHECK-NEXT: vmovd %xmm
define i64 @bitcasti64tof64() {
  %a = load double* undef
  %b = bitcast double %a to i64
  ret i64 %b
}