diff --git a/llvm/docs/LangRef.html b/llvm/docs/LangRef.html index a6a5fab506ce247e61e5d75fd5874b1cbde81839..38307cb094e8e2ff2bdc5355d0149dcf5366349a 100644 --- a/llvm/docs/LangRef.html +++ b/llvm/docs/LangRef.html @@ -2563,6 +2563,41 @@ If the argument is a SNAN or QNAN, it returns true, otherwise false. + +
+ ++ call bool (<float or double>, <float or double>)* %llvm.isunordered(<float or double> Val1, + <float or double> Val2) ++ +
+The 'llvm.isunordered' intrinsic returns true if either or both of the +specified floating point values is a NAN. +
+ ++The arguments are floating point numbers of the same type. +
+ ++If either or both of the arguments is a SNAN or QNAN, it returns true, otherwise +false. +
+