diff --git a/docs/ReleaseNotes.html b/docs/ReleaseNotes.html
index 2456a1b6746..c3c90438fab 100644
--- a/docs/ReleaseNotes.html
+++ b/docs/ReleaseNotes.html
@@ -204,6 +204,12 @@ cases).
Code for running C++ destructors is now properly shared when possible. Before, the C++ front-end
generated N^2 amounts of duplicated cleanup code in some cases.
+
+The JIT used to generate code for
+ all functions pointed to by globals 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.