diff options
author | Chris Lattner <sabre@nondot.org> | 2008-04-21 18:25:01 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-04-21 18:25:01 +0000 |
commit | 037c781de797242ba652db775f1f2c5d2d4eb19b (patch) | |
tree | 500ab5fa46b2cf414bb348ccd5219b0014dc549d /lib/Transforms/Scalar/JumpThreading.cpp | |
parent | 92b9d49e4c7eecbe1bf030f3f3a9950514761518 (diff) |
fix grammar-o, thanks to Duncan for noticing.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50047 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Scalar/JumpThreading.cpp')
-rw-r--r-- | lib/Transforms/Scalar/JumpThreading.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/JumpThreading.cpp b/lib/Transforms/Scalar/JumpThreading.cpp index 3bca7ff19a..b68a969bc1 100644 --- a/lib/Transforms/Scalar/JumpThreading.cpp +++ b/lib/Transforms/Scalar/JumpThreading.cpp @@ -142,7 +142,7 @@ bool JumpThreading::ThreadBlock(BasicBlock *BB) { return false; // Must be an invoke. // If the terminator of this block is branching on a constant, simplify the - // terminator to an unconditional branch. This can occur do to threading in + // terminator to an unconditional branch. This can occur due to threading in // other blocks. if (isa<ConstantInt>(Condition)) { DOUT << " In block '" << BB->getNameStart() |