Add a release note entry for the change made in r362034.

llvm-svn: 362464
This commit is contained in:
Akira Hatanaka 2019-06-03 23:48:14 +00:00
parent bb39f78113
commit 59839124f4
1 changed files with 8 additions and 1 deletions

View File

@ -123,7 +123,14 @@ C++1z Feature Support
Objective-C Language Changes in Clang
-------------------------------------
...
- Fixed encoding of ObjC pointer types that are pointers to typedefs.
.. code-block:: c++
typedef NSArray<NSObject *> MyArray;
// clang used to encode this as "^{NSArray=#}" instead of "@".
const char *s0 = @encode(MyArray *);
OpenCL C Language Changes in Clang
----------------------------------