blob: eb7bed362826fe38ed6fc4917ea3b599a4235722 [file] [log] [blame]
Chris Lattnera32579b2004-06-11 02:54:54 +00001; RUN: llvm-as < %s | llc -march=x86 | not grep call
2declare bool %llvm.isnan(double)
3
4bool %test_isnan(double %X) {
5 %R = call bool %llvm.isnan(double %X)
6 ret bool %R
7}