Index: include/clang/Basic/AttrDocs.td =================================================================== --- include/clang/Basic/AttrDocs.td +++ include/clang/Basic/AttrDocs.td @@ -3277,9 +3277,9 @@ def ArtificialDocs : Documentation { let Category = DocCatFunction; let Content = [{ -The ``artificial`` attribute is used with inline functions to treat the inline -function as a unit while debugging. For more information see GCC_ documentation. - -.. _GCC: https://gcc.gnu.org/onlinedocs/gcc-4.6.4/gcc/Function-Attributes.html +The ``artificial`` attribute can be applied to an inline function. If such a +function is inlined, the attribute indicates that debuggers should associate +the resulting instructions with the call site, rather than with the +corresponding line within the inlined callee. }]; }