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.