[llvm-commits] [llvm] r52007 - /llvm/trunk/docs/ReleaseNotes.html

Dan Gohman gohman at apple.com
Thu Jun 5 08:43:11 PDT 2008


Author: djg
Date: Thu Jun  5 10:43:11 2008
New Revision: 52007

URL: http://llvm.org/viewvc/llvm-project?rev=52007&view=rev
Log:
Expand the bullet item about i128 support and APInt usage in codegen.

Modified:
    llvm/trunk/docs/ReleaseNotes.html

Modified: llvm/trunk/docs/ReleaseNotes.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/ReleaseNotes.html?rev=52007&r1=52006&r2=52007&view=diff

==============================================================================
--- llvm/trunk/docs/ReleaseNotes.html (original)
+++ llvm/trunk/docs/ReleaseNotes.html Thu Jun  5 10:43:11 2008
@@ -195,7 +195,12 @@
 
 <ul>
 <li>MemOperand in the code generator: describe me!.</li>
-<li>i128 support and APInt through most of codegen.</li>
+<li>Target-independent codegen infastructure now uses LLVM's APInt class for
+    handling integer values, which allow it to support integer types larger
+    than 64 bits. Note that support for such types is also dependent on
+    target-specific support. Use of APInt is also a step toward support for
+    non-power-of-2 integer sizes.</li>
+<li>Support for 128-bit integers on X86-64.</li>
 <li>Several compile time speedups for code with large basic blocks.</li>
 </ul>
 





More information about the llvm-commits mailing list