fix a typo.
authorNadav Rotem <nrotem@apple.com>
Wed, 12 Dec 2012 01:31:10 +0000 (01:31 +0000)
committerNadav Rotem <nrotem@apple.com>
Wed, 12 Dec 2012 01:31:10 +0000 (01:31 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@169953 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Vectorize/LoopVectorize.cpp

index d796716cf7a6a0b68ac4db3adb701b2de9842d6b..5c5e9af3b126e1c31f8ff5b4637d7ff0cc5a4c64 100644 (file)
@@ -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: