blob: da860ab94166319c6db975e94790dfaf8de8c759 [file] [log] [blame]
Chris Lattner16865af2004-02-23 03:21:09 +00001; RUN: llvm-as < %s | llc -march=x86
2
3bool %test1(double %X) {
4 %V = cast double %X to bool
5 ret bool %V
6}
7
8double %test2(ulong %X) {
9 %V = cast ulong %X to double
10 ret double %V
11}