mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 12:41:49 +01:00
Insert missing bracket in docs.
Body of unrolled loop was missing opening bracket. Reviewed By: Meinersbur Differential Revision: https://reviews.llvm.org/D87329
This commit is contained in:
parent
77adca5920
commit
81112063c3
@ -196,7 +196,7 @@ is transformed into (using an unroll factor of 4):
|
||||
.. 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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user