summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHans Wennborg <hans@hanshq.net>2019-02-21 14:19:52 +0000
committerHans Wennborg <hans@hanshq.net>2019-02-21 14:19:52 +0000
commit479033c4108f9556a4b7e6899163be2ef49c1fa7 (patch)
tree470229626c0da4305b333e09a6c82015e3fc69c8
parent6a89449e559b3c6d2a5d9717d5ff1de9634c7d46 (diff)
ReleaseNotes: speculative load hardening; text by Kristof
git-svn-id: https://llvm.org/svn/llvm-project/cfe/branches/release_80@354583 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--docs/ReleaseNotes.rst7
1 files changed, 6 insertions, 1 deletions
diff --git a/docs/ReleaseNotes.rst b/docs/ReleaseNotes.rst
index b0b09f14e3..c7d62933f4 100644
--- a/docs/ReleaseNotes.rst
+++ b/docs/ReleaseNotes.rst
@@ -130,6 +130,9 @@ Non-comprehensive list of changes in this release
New Compiler Flags
------------------
+- ``-mspeculative-load-hardening`` Clang now has an option to enable
+ Speculative Load Hardening.
+
- ``-fprofile-filter-files=[regexes]`` and ``-fprofile-exclude-files=[regexes]``.
Clang has now options to filter or exclude some files when
@@ -171,7 +174,9 @@ New Pragmas in Clang
Attribute Changes in Clang
--------------------------
-- ...
+* Clang now supports enabling/disabling speculative load hardening on a
+ per-function basis using the function attribute
+ ``speculative_load_hardening``/``no_speculative_load_hardening``.
Windows Support
---------------