From: Dan Gohman Date: Mon, 19 Oct 2009 14:56:05 +0000 (+0000) Subject: Fix a typo in a comment. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=dfffba6a83b7f79c8853e1412a93442b7a9b825d;p=oota-llvm.git Fix a typo in a comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84504 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/MachineSink.cpp b/lib/CodeGen/MachineSink.cpp index 2122172ee23..a00bebb191c 100644 --- a/lib/CodeGen/MachineSink.cpp +++ b/lib/CodeGen/MachineSink.cpp @@ -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;