From: Chris Lattner Date: Mon, 23 Feb 2004 03:51:34 +0000 (+0000) Subject: Update the 'new features' section X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=a118ae1c9d00cfc553b45d265e71e14a41037c02;p=oota-llvm.git Update the 'new features' section git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11731 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/ReleaseNotes.html b/docs/ReleaseNotes.html index c1eb2d985b9..35f5f7802b6 100644 --- a/docs/ReleaseNotes.html +++ b/docs/ReleaseNotes.html @@ -87,7 +87,10 @@ This release implements the following new features:
  1. A new LLVM source-level debugger has been started.
  2. -
  3. +
  4. LLVM 1.2 encodes bytecode files for large programs in 10-30% less space.
  5. +
  6. LLVM can now feed profile information back into optimizers for Profile Guided Optimization, and includes a simple basic block reordering pass.
  7. +
  8. The LLVM JIT lazily initializes global variables, reducing startup time for programs with lots of globals (like C++ programs).
  9. +
  10. The "tblgen" tool is now documented.