fix grammar-o, thanks to Duncan for noticing.
authorChris Lattner <sabre@nondot.org>
Mon, 21 Apr 2008 18:25:01 +0000 (18:25 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 21 Apr 2008 18:25:01 +0000 (18:25 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50047 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Scalar/JumpThreading.cpp

index 3bca7ff19afdf916ed8626cc8b6c58ef84405d26..b68a969bc1647a3bfdb29f9302c5cf363df1cbe0 100644 (file)
@@ -142,7 +142,7 @@ bool JumpThreading::ThreadBlock(BasicBlock *BB) {
     return false; // Must be an invoke.
   
   // If the terminator of this block is branching on a constant, simplify the
-  // terminator to an unconditional branch.  This can occur do to threading in
+  // terminator to an unconditional branch.  This can occur due to threading in
   // other blocks.
   if (isa<ConstantInt>(Condition)) {
     DOUT << "  In block '" << BB->getNameStart()