1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-30 07:22:55 +01:00
llvm-mirror/test/Regression/CodeGen/X86/2006-12-04-X86-64-Bitcast.ll
Reid Spencer 92dfdf4e52 XFAIL until PR1033 is fixed.
llvm-svn: 32187
2006-12-04 18:39:14 +00:00

14 lines
204 B
LLVM

; PR1033
; RUN: llvm-as < %s | llc -march=x86-64
; XFAIL: *
long %p(double %t) {
%u = bitcast double %t to long
ret long %u
}
double %q(long %t) {
%u = bitcast long %t to double
ret double %u
}