diff options
author | Chris Lattner <sabre@nondot.org> | 2004-06-15 21:50:46 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-06-15 21:50:46 +0000 |
commit | f64f794cad049f7a0d8472e820fdb64f618ffe98 (patch) | |
tree | ea5089831b9220e68f316f5c0e3c557b38e26e4e /llvm | |
parent | 7011d35594f9de12330727af76298708e457fabf (diff) | |
download | bcm5719-llvm-f64f794cad049f7a0d8472e820fdb64f618ffe98.tar.gz bcm5719-llvm-f64f794cad049f7a0d8472e820fdb64f618ffe98.zip |
llvm.isnan is dead, long live llvm.isunordered!
llvm-svn: 14190
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/docs/LangRef.html | 34 | ||||
-rw-r--r-- | llvm/docs/ReleaseNotes.html | 2 |
2 files changed, 1 insertions, 35 deletions
diff --git a/llvm/docs/LangRef.html b/llvm/docs/LangRef.html index 38307cb094e..5dfc9539c91 100644 --- a/llvm/docs/LangRef.html +++ b/llvm/docs/LangRef.html @@ -124,7 +124,6 @@ <li><a href="#i_memcpy">'<tt>llvm.memcpy</tt>' Intrinsic</a></li> <li><a href="#i_memmove">'<tt>llvm.memmove</tt>' Intrinsic</a></li> <li><a href="#i_memset">'<tt>llvm.memset</tt>' Intrinsic</a></li> - <li><a href="#i_isnan">'<tt>llvm.isnan</tt>' Intrinsic</a></li> <li><a href="#i_isunordered">'<tt>llvm.isunordered</tt>' Intrinsic</a></li> </ol> </li> @@ -2532,39 +2531,6 @@ this can be specified as the fourth argument, otherwise it should be set to 0 or <!-- _______________________________________________________________________ --> <div class="doc_subsubsection"> - <a name="i_isnan">'<tt>llvm.isnan</tt>' Intrinsic</a> -</div> - -<div class="doc_text"> - -<h5>Syntax:</h5> -<pre> - call bool (<float or double>)* %llvm.isnan(<float or double> Val) -</pre> - -<h5>Overview:</h5> - -<p> -The '<tt>llvm.isnan</tt>' intrinsic returns true if the specific floating point -value is a NAN. -</p> - -<h5>Arguments:</h5> - -<p> -The argument is a floating point number. -</p> - -<h5>Semantics:</h5> - -<p> -If the argument is a SNAN or QNAN, it returns true, otherwise false. -</p> -</div> - - -<!-- _______________________________________________________________________ --> -<div class="doc_subsubsection"> <a name="i_isunordered">'<tt>llvm.isunordered</tt>' Intrinsic</a> </div> diff --git a/llvm/docs/ReleaseNotes.html b/llvm/docs/ReleaseNotes.html index 7cd54c6b612..b40b356129b 100644 --- a/llvm/docs/ReleaseNotes.html +++ b/llvm/docs/ReleaseNotes.html @@ -126,7 +126,7 @@ bytecode format and (b) those who really want to understand or document the details of the bytecode format.</li> <li>The <a href="BytecodeFormat.html">LLVM Bytecode file format</a> is now being documented.</li> -<li>LLVM now provides an <a href="LangRef.html#i_isnan">llvm.isnan</a> intrinsic +<li>LLVM now provides an <a href="LangRef.html#i_isunordered">llvm.isunordered</a> intrinsic for efficient implementation of unordered floating point comparisons.</li> </ol> |