[llvm-commits] CVS: llvm/docs/ReleaseNotes.html
Chris Lattner
lattner at cs.uiuc.edu
Fri Jun 18 01:34:02 PDT 2004
Changes in directory llvm/docs:
ReleaseNotes.html updated: 1.200 -> 1.201
---
Log message:
Calls to __builtin_isunordered and friends no longer cause llvmgcc to ICE.
---
Diffs of the changes: (+8 -5)
Index: llvm/docs/ReleaseNotes.html
diff -u llvm/docs/ReleaseNotes.html:1.200 llvm/docs/ReleaseNotes.html:1.201
--- llvm/docs/ReleaseNotes.html:1.200 Tue Jun 15 16:50:46 2004
+++ llvm/docs/ReleaseNotes.html Fri Jun 18 01:26:29 2004
@@ -71,8 +71,8 @@
<p>This is the fourth public release of the LLVM compiler infrastructure. This
release primarily improves the <a href="#codequality">performance of the
-code</a> produced by all aspects of the LLVM compiler and adds some <a
-href="#newfeatures">new features</a>, though it does <a href="#bugfix">fix a few
+code</a> produced by all aspects of the LLVM compiler and adds many <a
+href="#newfeatures">new features</a>, and <a href="#bugfix">fixes a few
bugs</a> as well.</p>
<p> At this time, LLVM is known to correctly compile and run all C & C++
@@ -128,6 +128,8 @@
being documented.</li>
<li>LLVM now provides an <a href="LangRef.html#i_isunordered">llvm.isunordered</a> intrinsic
for efficient implementation of unordered floating point comparisons.</li>
+<li>The llvmgcc front-end now supports the GCC builtins for ISO C99 floating
+point comparison macros (e.g., <tt>__builtin_islessequal</tt>).</li>
</ol>
</div>
@@ -526,8 +528,9 @@
We support all builtins which have a C language equivalent (e.g.,
<tt>__builtin_cos</tt>), <tt>__builtin_alloca</tt>,
<tt>__builtin_types_compatible_p</tt>, <tt>__builtin_choose_expr</tt>,
- <tt>__builtin_constant_p</tt>, and <tt>__builtin_expect</tt> (ignored).</li>
-
+ <tt>__builtin_constant_p</tt>, and <tt>__builtin_expect</tt>
+ (currently ignored). We also support builtins for ISO C99 floating
+ point comparison macros (e.g., <tt>__builtin_islessequal</tt>).</li>
</ol>
<p>The following extensions <b>are</b> known to be supported:</p>
@@ -718,7 +721,7 @@
src="http://www.w3.org/Icons/valid-html401" alt="Valid HTML 4.01!" /></a>
<a href="http://llvm.cs.uiuc.edu">The LLVM Compiler Infrastructure</a><br>
- Last modified: $Date: 2004/06/15 21:50:46 $
+ Last modified: $Date: 2004/06/18 06:26:29 $
</address>
</body>
More information about the llvm-commits
mailing list