diff options
author | Chris Lattner <sabre@nondot.org> | 2003-12-12 07:26:25 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-12-12 07:26:25 +0000 |
commit | 8b644f90736aa1c2c70d37f1337211d0718b95d2 (patch) | |
tree | 1d37292237d173cde7b3bc2ef27ec055db156026 | |
parent | 993bdcec009bb833c501b1e61707cd7030068698 (diff) | |
download | external_llvm-8b644f90736aa1c2c70d37f1337211d0718b95d2.zip external_llvm-8b644f90736aa1c2c70d37f1337211d0718b95d2.tar.gz external_llvm-8b644f90736aa1c2c70d37f1337211d0718b95d2.tar.bz2 |
PR177 is no longer among the open
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10432 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | docs/ReleaseNotes.html | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/ReleaseNotes.html b/docs/ReleaseNotes.html index 2456a1b..c3c9043 100644 --- a/docs/ReleaseNotes.html +++ b/docs/ReleaseNotes.html @@ -204,6 +204,12 @@ cases).</li> <li>Code for running C++ destructors is now properly shared when possible. Before, the C++ front-end <a href="http://llvm.cs.uiuc.edu/PR11">generated N^2 amounts of duplicated cleanup code</a> in some cases.</li> + +<li>The JIT used to <a href="http://llvm.cs.uiuc.edu/PR177">generate code for + all functions pointed to by globals</a> immediately, before the program + started execution, but now it waits until the first time they are called to + compile them. This dramatically speeds up short runs of large C++ programs, + which often have large numbers of functions pointed to by vtables.</li> </ol> |