diff options
author | Leonard Chan <leonardchan@google.com> | 2019-01-24 00:11:35 +0000 |
---|---|---|
committer | Leonard Chan <leonardchan@google.com> | 2019-01-24 00:11:35 +0000 |
commit | 009f9e82319e77c36afe7498f90283d29aa0b2d3 (patch) | |
tree | 6c9e573750d4b570f3f999edb62bcd6697020c80 /clang/docs/ReleaseNotes.rst | |
parent | ec0263027811f48b907224ede0dd24c33c1c7507 (diff) | |
download | bcm5719-llvm-009f9e82319e77c36afe7498f90283d29aa0b2d3.tar.gz bcm5719-llvm-009f9e82319e77c36afe7498f90283d29aa0b2d3.zip |
[Sema] Fix Modified Type in address_space AttributedType
This is a fix for https://reviews.llvm.org/D51229 where we pass the
address_space qualified type as the modified type of an AttributedType. This
change now instead wraps the AttributedType with either the address_space
qualifier or a DependentAddressSpaceType.
Differential Revision: https://reviews.llvm.org/D55447
llvm-svn: 351997
Diffstat (limited to 'clang/docs/ReleaseNotes.rst')
-rw-r--r-- | clang/docs/ReleaseNotes.rst | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/clang/docs/ReleaseNotes.rst b/clang/docs/ReleaseNotes.rst index a95a4b90570..67472f2a506 100644 --- a/clang/docs/ReleaseNotes.rst +++ b/clang/docs/ReleaseNotes.rst @@ -162,7 +162,11 @@ clang-format libclang -------- -... +- When `CINDEXTEST_INCLUDE_ATTRIBUTED_TYPES` is not provided when making a + CXType, the equivalent type of the AttributedType is returned instead of the + modified type if the user does not want attribute sugar. The equivalent type + represents the minimally-desugared type which the AttributedType is + canonically equivalent to. Static Analyzer |