We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89af2d5 commit 542d24fCopy full SHA for 542d24f
llvm/docs/ReleaseNotes.html
@@ -204,6 +204,12 @@
204
205
<li>Code for running C++ destructors is now properly shared when possible. Before, the C++ front-end
206
<a href="http://llvm.cs.uiuc.edu/PR11">generated N^2 amounts of duplicated cleanup code</a> in some cases.</li>
207
+
208
+<li>The JIT used to <a href="http://llvm.cs.uiuc.edu/PR177">generate code for
209
+ all functions pointed to by globals</a> immediately, before the program
210
+ started execution, but now it waits until the first time they are called to
211
+ compile them. This dramatically speeds up short runs of large C++ programs,
212
+ which often have large numbers of functions pointed to by vtables.</li>
213
</ol>
214
215
0 commit comments