r297162 - Revert "Document that code inlined into a nodebug function also won't get any"

Adrian Prantl via cfe-commits cfe-commits at lists.llvm.org
Tue Mar 7 09:28:57 PST 2017


Author: adrian
Date: Tue Mar  7 11:28:56 2017
New Revision: 297162

URL: http://llvm.org/viewvc/llvm-project?rev=297162&view=rev
Log:
Revert "Document that code inlined into a nodebug function also won't get any"

This reverts commit r296776.
This statement is no longer true.

Modified:
    cfe/trunk/include/clang/Basic/AttrDocs.td

Modified: cfe/trunk/include/clang/Basic/AttrDocs.td
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Basic/AttrDocs.td?rev=297162&r1=297161&r2=297162&view=diff
==============================================================================
--- cfe/trunk/include/clang/Basic/AttrDocs.td (original)
+++ cfe/trunk/include/clang/Basic/AttrDocs.td Tue Mar  7 11:28:56 2017
@@ -657,8 +657,7 @@ def NoDebugDocs : Documentation {
   let Content = [{
 The ``nodebug`` attribute allows you to suppress debugging information for a
 function or method, or for a variable that is not a parameter or a non-static
-data member. It will also suppress debug information for any code that is
-inlined into a ``nodebug`` function or method.
+data member.
   }];
 }
 




More information about the cfe-commits mailing list