Isnan became unordered

llvm-svn: 14322
This commit is contained in:
Chris Lattner 2004-06-22 16:13:57 +00:00
parent 7b27d08aa9
commit f4dc3fd26e
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
; RUN: llvm-as < %s | llc -march=x86 | not grep call
declare bool %llvm.isnan(double)
declare bool %llvm.isunordered(double)
bool %test_isnan(double %X) {
%R = call bool %llvm.isnan(double %X)
%R = call bool %llvm.isunordered(double %X, double %X)
ret bool %R
}