Fix whitespace in vectorizer example

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@203738 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Arnold Schwaighofer 2014-03-12 23:58:07 +00:00
parent 6a7d263e8b
commit 8d46932137

View File

@ -184,7 +184,7 @@ that scatter/gathers memory.
int foo(int * A, int * B, int n) {
for (intptr_t i = 0; i < n; ++i)
A[i] += B[i*4];
A[i] += B[i * 4];
}
In many situations the cost model will inform LLVM that this is not beneficial