Fixing the RST markup for the #pragma loop attribute documentation.

llvm-svn: 211693
This commit is contained in:
Aaron Ballman 2014-06-25 12:49:05 +00:00
parent 120c79f231
commit ca237b586e
1 changed files with 2 additions and 2 deletions

View File

@ -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.
}];
}