aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZheng Qian <qianzhen@ca.ibm.com>2023-07-24 22:49:58 -0400
committerHubert Tong <hubert.reinterpretcast@gmail.com>2023-07-24 22:56:18 -0400
commitcead1497ae0c1d57ee6883500c7c205f83798440 (patch)
treef9146953dcae0eb576b70a531772839e453065ef
parent794f74e2574331d30183887d733d151978006a33 (diff)
downloadllvm-cead1497ae0c1d57ee6883500c7c205f83798440.zip
llvm-cead1497ae0c1d57ee6883500c7c205f83798440.tar.gz
llvm-cead1497ae0c1d57ee6883500c7c205f83798440.tar.bz2
Add new option -fkeep-persistent-storage-variables to Clang release notes
This patch updates the Clang release notes with the new option -fkeep-persistent-storage-variables added in bb6ab91b1dcd. Reviewed By: hubert.reinterpretcast Differential Revision: https://reviews.llvm.org/D155501
-rw-r--r--clang/docs/ReleaseNotes.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/clang/docs/ReleaseNotes.rst b/clang/docs/ReleaseNotes.rst
index b69e1c7..89707a6 100644
--- a/clang/docs/ReleaseNotes.rst
+++ b/clang/docs/ReleaseNotes.rst
@@ -274,6 +274,11 @@ New Compiler Flags
- ``-fcaret-diagnostics-max-lines=`` has been added as a driver options, which
lets users control the maximum number of source lines printed for a
caret diagnostic.
+- ``-fkeep-persistent-storage-variables`` has been implemented to keep all
+ variables that have a persistent storage duration—including global, static
+ and thread-local variables—to guarantee that they can be directly addressed.
+ Since this inhibits the merging of the affected variables, the number of
+ individual relocations in the program will generally increase.
Deprecated Compiler Flags
-------------------------