OSDN Git Service
(root)
/
android-x86
/
external-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f02a916
)
New testcase. Probably many targets don't support this, so they should probably
author
Chris Lattner
<sabre@nondot.org>
Fri, 28 Oct 2005 19:52:02 +0000
(19:52 +0000)
committer
Chris Lattner
<sabre@nondot.org>
Fri, 28 Oct 2005 19:52:02 +0000
(19:52 +0000)
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
test/CodeGen/Generic/isunord.ll
[new file with mode: 0644]
patch
|
blob
diff --git a/test/CodeGen/Generic/isunord.ll
b/test/CodeGen/Generic/isunord.ll
new file mode 100644
(file)
index 0000000..
784c73c
--- /dev/null
+++ b/
test/CodeGen/Generic/isunord.ll
@@ -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
+}