PR177 is no longer among the open
authorChris Lattner <sabre@nondot.org>
Fri, 12 Dec 2003 07:26:25 +0000 (07:26 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 12 Dec 2003 07:26:25 +0000 (07:26 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10432 91177308-0d34-0410-b5e6-96231b3b80d8

docs/ReleaseNotes.html

index 2456a1b67467339f4ef3c6ca6484f919f547e43a..c3c90438fabb1e27620067308a0f5eac4481dc97 100644 (file)
@@ -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>