[PATCH] D87329: Insert missing bracket in docs.

Nate Voorhies via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Sep 8 15:21:25 PDT 2020


This revision was automatically updated to reflect the committed changes.
Closed by commit rG76a2c434f2c3: Insert missing bracket in docs. (authored by ncv).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D87329/new/

https://reviews.llvm.org/D87329

Files:
  llvm/docs/TransformMetadata.rst


Index: llvm/docs/TransformMetadata.rst
===================================================================
--- llvm/docs/TransformMetadata.rst
+++ llvm/docs/TransformMetadata.rst
@@ -196,7 +196,7 @@
 .. code-block:: c
 
     int i = 0;
-    for (; i + 3 < n; i+=4) // unrolled loop
+    for (; i + 3 < n; i+=4) { // unrolled loop
       Stmt(i);
       Stmt(i+1);
       Stmt(i+2);


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D87329.290593.patch
Type: text/x-patch
Size: 382 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200908/61e95682/attachment.bin>


More information about the llvm-commits mailing list