summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorMartin Storsjo <martin@martin.st>2019-01-22 20:41:51 +0000
committerMartin Storsjo <martin@martin.st>2019-01-22 20:41:51 +0000
commitfca61b1604e4e99cef2272d1c5a637108f58847e (patch)
treeecb96432380c31cf42a5b108e9581cb4fbeed5eb /docs
parent21bbf1530d694e65d6118faba69748d3b62343ad (diff)
[docs] Add release notes for notable things I've contributed since last release
Differential Revision: https://reviews.llvm.org/D57004 git-svn-id: https://llvm.org/svn/llvm-project/cfe/branches/release_80@351872 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/ReleaseNotes.rst12
1 files changed, 12 insertions, 0 deletions
diff --git a/docs/ReleaseNotes.rst b/docs/ReleaseNotes.rst
index b4f290e05d..28be16677e 100644
--- a/docs/ReleaseNotes.rst
+++ b/docs/ReleaseNotes.rst
@@ -136,6 +136,9 @@ New Compiler Flags
instrumenting for gcov-based profiling.
See the :doc:`UsersManual` for details.
+- When using a custom stack alignment, the ``stackrealign`` attribute is now
+ implicitly set on the main function.
+
- ...
Deprecated Compiler Flags
@@ -179,6 +182,15 @@ Windows Support
`dllexport` and `dllimport` attributes not apply to inline member functions.
This can significantly reduce compile and link times. See the `User's Manual
<UsersManual.html#the-zc-dllexportinlines-option>`_ for more info.
+
+- For MinGW, ``-municode`` now correctly defines ``UNICODE`` during
+ preprocessing.
+
+- For MinGW, clang now produces vtables and RTTI for dllexported classes
+ without key functions. This fixes building Qt in debug mode.
+
+- Allow using Address Sanitizer and Undefined Behaviour Sanitizer on MinGW.
+
- ...