Add a release note entry for the change made in r362034.
authorAkira Hatanaka <ahatanaka@apple.com>
Mon, 3 Jun 2019 23:48:14 +0000 (23:48 +0000)
committerAkira Hatanaka <ahatanaka@apple.com>
Mon, 3 Jun 2019 23:48:14 +0000 (23:48 +0000)
llvm-svn: 362464

clang/docs/ReleaseNotes.rst

index a13c454..29c900d 100644 (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
 ----------------------------------