Fix whitespace in vectorizer example

llvm-svn: 203738
This commit is contained in:
Arnold Schwaighofer 2014-03-12 23:58:07 +00:00
parent 3c1232f637
commit 34ba878c90

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