projects
/
oota-llvm.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Use the generic Lfunc_begin label on ppc.
[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, double* undef
7
%b = bitcast double %a to i64
8
ret i64 %b
9
}
10