diff options
author | Nadav Rotem <nrotem@apple.com> | 2012-10-20 05:03:27 +0000 |
---|---|---|
committer | Nadav Rotem <nrotem@apple.com> | 2012-10-20 05:03:27 +0000 |
commit | 71a148223907504c78f90f835131d5e8921011ad (patch) | |
tree | 743d099b0b805da1dfe98087c8224925a8c16878 /lib/Transforms/Vectorize/LoopVectorize.cpp | |
parent | e6748f91eaa69b91cc5c4081a45e013a251c2726 (diff) |
Fix a typo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@166367 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Vectorize/LoopVectorize.cpp')
-rw-r--r-- | lib/Transforms/Vectorize/LoopVectorize.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Vectorize/LoopVectorize.cpp b/lib/Transforms/Vectorize/LoopVectorize.cpp index 7866fcf04a..968d4719f5 100644 --- a/lib/Transforms/Vectorize/LoopVectorize.cpp +++ b/lib/Transforms/Vectorize/LoopVectorize.cpp @@ -206,7 +206,7 @@ private: /// we read and write from memory. This method checks if it is /// legal to vectorize the code, considering only memory constrains. /// Returns true if BB is vectorizable - bool canVectorizeMemory(BasicBlock &BB;) + bool canVectorizeMemory(BasicBlock &BB); // Check if a pointer value is known to be disjoint. // Example: Alloca, Global, NoAlias. |