From: Aaron Ballman Date: Wed, 25 Jun 2014 12:49:05 +0000 (+0000) Subject: Fixing the RST markup for the #pragma loop attribute documentation. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3d34ffaa95ad22393234dd26b3622bd0ce6928cf;p=clang Fixing the RST markup for the #pragma loop attribute documentation. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@211693 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Basic/AttrDocs.td b/include/clang/Basic/AttrDocs.td index 5ba14462b2..69513728fa 100644 --- a/include/clang/Basic/AttrDocs.td +++ b/include/clang/Basic/AttrDocs.td @@ -1015,12 +1015,12 @@ This attribute is incompatible with the ``always_inline`` attribute. def LoopHintDocs : Documentation { let Category = DocCatStmt; let Content = [{ -The ``#pragma clang loop'' directive allows loop optimization hints to be +The ``#pragma clang loop`` directive allows loop optimization hints to be specified for the subsequent loop. The directive allows vectorization, interleaving, and unrolling to be enabled or disabled. Vector width as well as interleave and unrolling count can be manually specified. See `language extensions -'_ +`_ for details. }]; }