[llvm-commits] [llvm] r169953 - /llvm/trunk/lib/Transforms/Vectorize/LoopVectorize.cpp
Nadav Rotem
nrotem at apple.com
Tue Dec 11 17:31:10 PST 2012
Author: nadav
Date: Tue Dec 11 19:31:10 2012
New Revision: 169953
URL: http://llvm.org/viewvc/llvm-project?rev=169953&view=rev
Log:
fix a typo.
Modified:
llvm/trunk/lib/Transforms/Vectorize/LoopVectorize.cpp
Modified: llvm/trunk/lib/Transforms/Vectorize/LoopVectorize.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Vectorize/LoopVectorize.cpp?rev=169953&r1=169952&r2=169953&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Vectorize/LoopVectorize.cpp (original)
+++ llvm/trunk/lib/Transforms/Vectorize/LoopVectorize.cpp Tue Dec 11 19:31:10 2012
@@ -1859,7 +1859,7 @@
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:
More information about the llvm-commits
mailing list