New testcase. Probably many targets don't support this, so they should probably

add themselves as xfails until they do (at least for the release).

llvm-svn: 24065
This commit is contained in:
Chris Lattner 2005-10-28 19:52:02 +00:00
parent 97d72c80e4
commit 225022e4b0
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
; RUN: llvm-as < %s | llc
declare bool %llvm.isunordered(double, double)
bool %test(double %X, double %Y) {
%tmp27 = call bool %llvm.isunordered( double %X, double %Y)
ret bool %tmp27
}