aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorNadav Rotem <nrotem@apple.com>2012-12-12 01:31:10 +0000
committerNadav Rotem <nrotem@apple.com>2012-12-12 01:31:10 +0000
commit6c645a35ccc658b20506d3137890d9003edd3527 (patch)
treea58ca9acd4ae19a5c27c14438da6bbb03addcdde /lib
parent981b96376a99dacced70cc9b1e870968f426331a (diff)
downloadexternal_llvm-6c645a35ccc658b20506d3137890d9003edd3527.zip
external_llvm-6c645a35ccc658b20506d3137890d9003edd3527.tar.gz
external_llvm-6c645a35ccc658b20506d3137890d9003edd3527.tar.bz2
fix a typo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@169953 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Transforms/Vectorize/LoopVectorize.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Vectorize/LoopVectorize.cpp b/lib/Transforms/Vectorize/LoopVectorize.cpp
index d796716..5c5e9af 100644
--- a/lib/Transforms/Vectorize/LoopVectorize.cpp
+++ b/lib/Transforms/Vectorize/LoopVectorize.cpp
@@ -1859,7 +1859,7 @@ bool LoopVectorizationLegality::blockCanBePredicated(BasicBlock *BB) {
if (it->mayReadFromMemory() || it->mayWriteToMemory() || it->mayThrow())
return false;
- // The isntructions below can trap.
+ // The instructions below can trap.
switch (it->getOpcode()) {
default: continue;
case Instruction::UDiv: