From 26bbe93ec90142aef26b1f57add6af10ec502a96 Mon Sep 17 00:00:00 2001 From: Alkis Evlogimenos Date: Sun, 13 Jun 2004 01:16:15 +0000 Subject: [PATCH] Really add the docs this time :-) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14167 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/LangRef.html | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/docs/LangRef.html b/docs/LangRef.html index a6a5fab506c..38307cb094e 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. + +
+ 'llvm.isunordered' Intrinsic +
+ +
+ +
Syntax:
+
+  call bool (<float or double>, <float or double>)* %llvm.isunordered(<float or double> Val1,
+                                                                      <float or double> Val2)
+
+ +
Overview:
+ +

+The 'llvm.isunordered' intrinsic returns true if either or both of the +specified floating point values is a NAN. +

+ +
Arguments:
+ +

+The arguments are floating point numbers of the same type. +

+ +
Semantics:
+ +

+If either or both of the arguments is a SNAN or QNAN, it returns true, otherwise +false. +

+
+ +