Fix a typo in a comment.
authorDan Gohman <gohman@apple.com>
Mon, 19 Oct 2009 14:56:05 +0000 (14:56 +0000)
committerDan Gohman <gohman@apple.com>
Mon, 19 Oct 2009 14:56:05 +0000 (14:56 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84504 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/MachineSink.cpp

index 2122172ee237297593a58c5f9519933c64d8bd63..a00bebb191c98c32594718c771b919cb277071b9 100644 (file)
@@ -251,7 +251,7 @@ bool MachineSinking::SinkInstruction(MachineInstr *MI, bool &SawStore) {
   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;