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 | b0db9917afdb1ef5da6ad7d36bfe5fbfc0f43c45 (patch) | |
tree | 9bb393892e14d13d339c08c7cad4a06ec6fea63f /llvm/lib/CodeGen/MachineSink.cpp | |
parent | 20a327b31fc168ddab1494b0dabf4a170666b7aa (diff) | |
download | bcm5719-llvm-b0db9917afdb1ef5da6ad7d36bfe5fbfc0f43c45.tar.gz bcm5719-llvm-b0db9917afdb1ef5da6ad7d36bfe5fbfc0f43c45.zip |
Fix a typo in a comment.
llvm-svn: 84504
Diffstat (limited to 'llvm/lib/CodeGen/MachineSink.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineSink.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/MachineSink.cpp b/llvm/lib/CodeGen/MachineSink.cpp index 2122172ee23..a00bebb191c 100644 --- a/llvm/lib/CodeGen/MachineSink.cpp +++ b/llvm/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; |