summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Ballman <aaron@aaronballman.com>2014-06-25 12:49:05 +0000
committerAaron Ballman <aaron@aaronballman.com>2014-06-25 12:49:05 +0000
commit3d34ffaa95ad22393234dd26b3622bd0ce6928cf (patch)
tree9d594cb7a0b854859c9c897d39836ca97468ff33
parent0d9014e8f35b4f273bbd4fa9361ae0f71cac3f6e (diff)
downloadclang-3d34ffaa95ad22393234dd26b3622bd0ce6928cf.tar.gz
clang-3d34ffaa95ad22393234dd26b3622bd0ce6928cf.tar.bz2
clang-3d34ffaa95ad22393234dd26b3622bd0ce6928cf.tar.xz
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
-rw-r--r--include/clang/Basic/AttrDocs.td4
1 files changed, 2 insertions, 2 deletions
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
-<http://clang.llvm.org/docs/LanguageExtensions.html#extensions-for-loop-hint-optimizations>'_
+<http://clang.llvm.org/docs/LanguageExtensions.html#extensions-for-loop-hint-optimizations>`_
for details.
}];
}