diff options
author | Dan Gohman <gohman@apple.com> | 2009-10-19 14:56:05 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-10-19 14:56:05 +0000 |
commit | dfffba6a83b7f79c8853e1412a93442b7a9b825d (patch) | |
tree | 977c9ec147fe47cbf54fa5dc38a6f8c505817a2d /lib/CodeGen/MachineSink.cpp | |
parent | 4e9785ed8ad34f01ccb459796d85a56600ed592b (diff) |
Fix a typo in a comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84504 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/MachineSink.cpp')
-rw-r--r-- | lib/CodeGen/MachineSink.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/MachineSink.cpp b/lib/CodeGen/MachineSink.cpp index 2122172ee2..a00bebb191 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; |