From: Akira Hatanaka Date: Mon, 3 Jun 2019 23:48:14 +0000 (+0000) Subject: Add a release note entry for the change made in r362034. X-Git-Tag: llvmorg-10-init~3844 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=59839124f49d69bb4846b2f9c622054c534a63cd;p=platform%2Fupstream%2Fllvm.git Add a release note entry for the change made in r362034. llvm-svn: 362464 --- diff --git a/clang/docs/ReleaseNotes.rst b/clang/docs/ReleaseNotes.rst index a13c454..29c900d 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 MyArray; + + // clang used to encode this as "^{NSArray=#}" instead of "@". + const char *s0 = @encode(MyArray *); OpenCL C Language Changes in Clang ----------------------------------