1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-23 13:02:52 +02:00
llvm-mirror/test/Regression/CodeGen/X86/2004-02-22-Casts.llx

12 lines
189 B
Plaintext
Raw Normal View History

; RUN: llvm-as < %s | llc -march=x86
bool %test1(double %X) {
%V = cast double %X to bool
ret bool %V
}
double %test2(ulong %X) {
%V = cast ulong %X to double
ret double %V
}