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/Generic/bool-to-double.ll
Chris Lattner d61ac59816 test broken in the IA64 backend.
llvm-svn: 23651
2005-10-07 04:49:00 +00:00

6 lines
110 B
LLVM

; RUN: llvm-as < %s | llc
double %test(bool %X) {
%Y = cast bool %X to double
ret double %Y
}