blob: 0665e55e90c9c6a8dad34e90d17535fbdf95794e [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 | not grep call
2declare bool %llvm.isunordered.f64(double)
3
4bool %test_isnan(double %X) {
5 %R = call bool %llvm.isunordered.f64(double %X, double %X)
6 ret bool %R
7}