From: Paul Robinson Date: Mon, 18 Jul 2016 17:19:12 +0000 (+0000) Subject: Release note for 'nodebug' on variables X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ab11ab0ba3a8ff24a8d6b4d06fc4aa1a0568571d;p=clang Release note for 'nodebug' on variables git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@275817 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/ReleaseNotes.rst b/docs/ReleaseNotes.rst index fa73054676..306b9d0a90 100644 --- a/docs/ReleaseNotes.rst +++ b/docs/ReleaseNotes.rst @@ -72,6 +72,16 @@ New Pragmas in Clang Clang now supports the ... + +Attribute Changes in Clang +-------------------------- + +- The ``nodebug`` attribute may now be applied to static, global, and local + variables (but not parameters or non-static data members). This will suppress + all debugging information for the variable (and its type, if there are no + other uses of the type). + + Windows Support ---------------