[llvm-commits] [llvm] r84504 - /llvm/trunk/lib/CodeGen/MachineSink.cpp
Dan Gohman
gohman at apple.com
Mon Oct 19 07:56:05 PDT 2009
Author: djg
Date: Mon Oct 19 09:56:05 2009
New Revision: 84504
URL: http://llvm.org/viewvc/llvm-project?rev=84504&view=rev
Log:
Fix a typo in a comment.
Modified:
llvm/trunk/lib/CodeGen/MachineSink.cpp
Modified: llvm/trunk/lib/CodeGen/MachineSink.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/MachineSink.cpp?rev=84504&r1=84503&r2=84504&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/MachineSink.cpp (original)
+++ llvm/trunk/lib/CodeGen/MachineSink.cpp Mon Oct 19 09:56:05 2009
@@ -251,7 +251,7 @@
if (SuccToSinkTo->isLandingPad())
return false;
- // If is not possible to sink an instruction into its own block. This can
+ // It is not possible to sink an instruction into its own block. This can
// happen with loops.
if (MI->getParent() == SuccToSinkTo)
return false;
More information about the llvm-commits
mailing list