diff options
author | Hans Wennborg <hans@chromium.org> | 2020-02-25 12:06:44 +0100 |
---|---|---|
committer | Hans Wennborg <hans@chromium.org> | 2020-02-25 12:06:44 +0100 |
commit | 3a11c86849c27e1e21d5e8cdf55cfa724164db57 (patch) | |
tree | c4d6ac41e7c2adc52605acf6d1d6d0236581805a /clang/docs/ReleaseNotes.rst | |
parent | 882720b7ce338c81aa24c1c2b2614c47d248920f (diff) | |
download | bcm5719-llvm-3a11c86849c27e1e21d5e8cdf55cfa724164db57.tar.gz bcm5719-llvm-3a11c86849c27e1e21d5e8cdf55cfa724164db57.zip |
Add Control Flow Guard in Clang release notes.
By Andrew Paverd!
Differential revision: https://reviews.llvm.org/D75047
Diffstat (limited to 'clang/docs/ReleaseNotes.rst')
-rw-r--r-- | clang/docs/ReleaseNotes.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/clang/docs/ReleaseNotes.rst b/clang/docs/ReleaseNotes.rst index 91506e1a2b2..67c42870a3d 100644 --- a/clang/docs/ReleaseNotes.rst +++ b/clang/docs/ReleaseNotes.rst @@ -208,6 +208,12 @@ Windows Support - Fixed handling of TLS variables that are shared between object files in MinGW environments +- The ``-cfguard`` flag now emits Windows Control Flow Guard checks on indirect + function calls. The previous behavior is still available with the + ``-cfguard-nochecks`` flag. These checks can be disabled for specific + functions using the new ``__declspec(guard(nocf))`` modifier. + + C Language Changes in Clang --------------------------- |