From 8d4693213721e33ac843d7d0f322e71ff3604c03 Mon Sep 17 00:00:00 2001 From: Arnold Schwaighofer Date: Wed, 12 Mar 2014 23:58:07 +0000 Subject: [PATCH] Fix whitespace in vectorizer example git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@203738 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/Vectorizers.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Vectorizers.rst b/docs/Vectorizers.rst index 823fd9e6702..887ccaa8f81 100644 --- a/docs/Vectorizers.rst +++ b/docs/Vectorizers.rst @@ -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 -- 2.34.1