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).


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24065 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2005-10-28 19:52:02 +00:00
parent f02a916d82
commit 32b03ff918

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
}