summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArthur Eubanks <aeubanks@google.com>2023-12-21 14:30:43 -0800
committerGitHub <noreply@github.com>2023-12-21 14:30:43 -0800
commit3ca9bcc6ccd0de4e05c7b7749c24f94e5f184b45 (patch)
treebe052ab7e8bcaa9cc818b1f9aefa3bccb24bd176
parent82b38e83cfbb3f996313b22f5daf0d104c0f27dc (diff)
[llvm][docs][X86] Mention code model improvements in ReleaseNotes (#76190)
-rw-r--r--llvm/docs/ReleaseNotes.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/llvm/docs/ReleaseNotes.rst b/llvm/docs/ReleaseNotes.rst
index 33afa09fcac3..9d5124680141 100644
--- a/llvm/docs/ReleaseNotes.rst
+++ b/llvm/docs/ReleaseNotes.rst
@@ -172,6 +172,11 @@ Changes to the X86 Backend
* Support ISA of ``AVX10.1-256`` and ``AVX10.1-512``.
* ``-mcpu=pantherlake`` and ``-mcpu=clearwaterforest`` are now supported.
* ``-mapxf`` is supported.
+* Marking global variables with ``code_model = "small"/"large"`` in the IR now
+ overrides the global code model to allow 32-bit relocations or require 64-bit
+ relocations to the global variable.
+* The medium code model's code generation was audited to be more similar to the
+ small code model where possible.
Changes to the OCaml bindings
-----------------------------