[llvm-commits] [llvm] r50047 - /llvm/trunk/lib/Transforms/Scalar/JumpThreading.cpp

Chris Lattner sabre at nondot.org
Mon Apr 21 11:25:01 PDT 2008


Author: lattner
Date: Mon Apr 21 13:25:01 2008
New Revision: 50047

URL: http://llvm.org/viewvc/llvm-project?rev=50047&view=rev
Log:
fix grammar-o, thanks to Duncan for noticing.

Modified:
    llvm/trunk/lib/Transforms/Scalar/JumpThreading.cpp

Modified: llvm/trunk/lib/Transforms/Scalar/JumpThreading.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Scalar/JumpThreading.cpp?rev=50047&r1=50046&r2=50047&view=diff

==============================================================================
--- llvm/trunk/lib/Transforms/Scalar/JumpThreading.cpp (original)
+++ llvm/trunk/lib/Transforms/Scalar/JumpThreading.cpp Mon Apr 21 13:25:01 2008
@@ -142,7 +142,7 @@
     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()





More information about the llvm-commits mailing list