diff --git a/reference/opcache/ini.xml b/reference/opcache/ini.xml
index 3d45f0d638f4..c1077de44303 100644
--- a/reference/opcache/ini.xml
+++ b/reference/opcache/ini.xml
@@ -1158,7 +1158,8 @@ function getA() { return A; }
off: Disabled, but can be enabled at runtime.
tracing/on: Use tracing JIT.
- Enabled by default and recommended for most users.
+ Recommended for most users. Prior to PHP 8.4.0, this was the default
+ value; as of PHP 8.4.0 the default is disable.
function: Use function JIT.
@@ -1220,6 +1221,12 @@ function getA() { return A; }
The "tracing" mode corresponds to CRTO = 1254,
the "function" mode corresponds to CRTO = 1205.
+
+
+ As of PHP 8.4.0, if the JIT is enabled, PHP exits with a fatal error
+ during startup when JIT initialization fails.
+
+