mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
aa1a4d51f0
llvm-svn: 192171
11 lines
244 B
LLVM
11 lines
244 B
LLVM
; RUN: llc < %s -O0 -mtriple=x86_64-apple-darwin -mcpu=corei7-avx -mattr=+avx | FileCheck %s
|
|
|
|
; CHECK: vmovsd (%
|
|
; CHECK-NEXT: vmovq %xmm
|
|
define i64 @bitcasti64tof64() {
|
|
%a = load double* undef
|
|
%b = bitcast double %a to i64
|
|
ret i64 %b
|
|
}
|
|
|