mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 17:39:16 +00:00
docs: actually indent these consistently
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@170792 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
9baa6e4c36
commit
5e81633499
@ -166,7 +166,7 @@ memory accesses.
|
||||
|
||||
int foo(int *A, int *B, int n, int k) {
|
||||
for (int i = 0; i < n; ++i)
|
||||
A[i*7] += B[i*k];
|
||||
A[i*7] += B[i*k];
|
||||
}
|
||||
|
||||
Vectorization of Mixed Types
|
||||
@ -180,7 +180,7 @@ vectorization is profitable.
|
||||
|
||||
int foo(int *A, char *B, int n, int k) {
|
||||
for (int i = 0; i < n; ++i)
|
||||
A[i] += 4 * B[i];
|
||||
A[i] += 4 * B[i];
|
||||
}
|
||||
|
||||
Vectorization of function calls
|
||||
|
Loading…
x
Reference in New Issue
Block a user