diff options
author | Matt Arsenault <Matthew.Arsenault@amd.com> | 2013-08-21 18:54:47 +0000 |
---|---|---|
committer | Matt Arsenault <Matthew.Arsenault@amd.com> | 2013-08-21 18:54:47 +0000 |
commit | 5d7a73f866c6729b9cb7a1cca9711b68d125a981 (patch) | |
tree | ef48aa7ae388ad7ae3ba36d0d2e83747d55552db | |
parent | 52d35c24600186790d83a0830ebdc79fb71f878d (diff) | |
download | external_llvm-5d7a73f866c6729b9cb7a1cca9711b68d125a981.zip external_llvm-5d7a73f866c6729b9cb7a1cca9711b68d125a981.tar.gz external_llvm-5d7a73f866c6729b9cb7a1cca9711b68d125a981.tar.bz2 |
Fix typo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@188915 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Transforms/Vectorize/SLPVectorizer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Vectorize/SLPVectorizer.cpp b/lib/Transforms/Vectorize/SLPVectorizer.cpp index 3c24af8..73e8056 100644 --- a/lib/Transforms/Vectorize/SLPVectorizer.cpp +++ b/lib/Transforms/Vectorize/SLPVectorizer.cpp @@ -308,7 +308,7 @@ private: /// \returns the index of the last instrucion in the BB from \p VL. int getLastIndex(ArrayRef<Value *> VL); - /// \returns the Instrucion in the bundle \p VL. + /// \returns the Instruction in the bundle \p VL. Instruction *getLastInstruction(ArrayRef<Value *> VL); /// \returns a vector from a collection of scalars in \p VL. |