aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlkis Evlogimenos <alkis@evlogimenos.com>2004-06-13 01:16:15 +0000
committerAlkis Evlogimenos <alkis@evlogimenos.com>2004-06-13 01:16:15 +0000
commit26bbe93ec90142aef26b1f57add6af10ec502a96 (patch)
tree093a8df3fe7f1d991b2880f99abe12154fe1dac6
parentac700ca926ae95d9d33fe9cf0fd1e3d7205a5320 (diff)
Really add the docs this time :-)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14167 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--docs/LangRef.html35
1 files changed, 35 insertions, 0 deletions
diff --git a/docs/LangRef.html b/docs/LangRef.html
index a6a5fab506..38307cb094 100644
--- a/docs/LangRef.html
+++ b/docs/LangRef.html
@@ -2563,6 +2563,41 @@ If the argument is a SNAN or QNAN, it returns true, otherwise false.
</div>
+<!-- _______________________________________________________________________ -->
+<div class="doc_subsubsection">
+ <a name="i_isunordered">'<tt>llvm.isunordered</tt>' Intrinsic</a>
+</div>
+
+<div class="doc_text">
+
+<h5>Syntax:</h5>
+<pre>
+ call bool (&lt;float or double&gt;, &lt;float or double&gt;)* %llvm.isunordered(&lt;float or double&gt; Val1,
+ &lt;float or double&gt; Val2)
+</pre>
+
+<h5>Overview:</h5>
+
+<p>
+The '<tt>llvm.isunordered</tt>' intrinsic returns true if either or both of the
+specified floating point values is a NAN.
+</p>
+
+<h5>Arguments:</h5>
+
+<p>
+The arguments are floating point numbers of the same type.
+</p>
+
+<h5>Semantics:</h5>
+
+<p>
+If either or both of the arguments is a SNAN or QNAN, it returns true, otherwise
+false.
+</p>
+</div>
+
+
<!-- ======================================================================= -->