1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

fix a typo.

llvm-svn: 169953
This commit is contained in:
Nadav Rotem 2012-12-12 01:31:10 +00:00
parent d29a3f8737
commit 1696945e9d

View 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: