summaryrefslogtreecommitdiffstats
path: root/clang/docs/ReleaseNotes.rst
diff options
context:
space:
mode:
authorAkira Hatanaka <ahatanaka@apple.com>2019-06-03 23:48:14 +0000
committerAkira Hatanaka <ahatanaka@apple.com>2019-06-03 23:48:14 +0000
commit59839124f49d69bb4846b2f9c622054c534a63cd (patch)
tree232e65e03e46ce8facc707ecc7af4db6ba891910 /clang/docs/ReleaseNotes.rst
parentbb39f78113fd3598c551018cb3f3f3d3228e13c1 (diff)
downloadbcm5719-llvm-59839124f49d69bb4846b2f9c622054c534a63cd.tar.gz
bcm5719-llvm-59839124f49d69bb4846b2f9c622054c534a63cd.zip
Add a release note entry for the change made in r362034.
llvm-svn: 362464
Diffstat (limited to 'clang/docs/ReleaseNotes.rst')
-rw-r--r--clang/docs/ReleaseNotes.rst9
1 files changed, 8 insertions, 1 deletions
diff --git a/clang/docs/ReleaseNotes.rst b/clang/docs/ReleaseNotes.rst
index a13c4540831..29c900d5232 100644
--- a/clang/docs/ReleaseNotes.rst
+++ b/clang/docs/ReleaseNotes.rst
@@ -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
----------------------------------
OpenPOWER on IntegriCloud