diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2002-10-29 23:06:16 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2002-10-29 23:06:16 +0000 |
commit | a3bbcb5b664c1c851b87392119608901b2e1837c (patch) | |
tree | fa3515a4887a8d5ed3812607e7b23832d32d054c /lib/Transforms/Scalar/InstructionCombining.cpp | |
parent | 81619b121c9a3ff32487343503ad80f2ffe48fc3 (diff) |
Fix spelling of `propagate'.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4423 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Scalar/InstructionCombining.cpp')
-rw-r--r-- | lib/Transforms/Scalar/InstructionCombining.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Transforms/Scalar/InstructionCombining.cpp b/lib/Transforms/Scalar/InstructionCombining.cpp index dab702dba0..be9f637523 100644 --- a/lib/Transforms/Scalar/InstructionCombining.cpp +++ b/lib/Transforms/Scalar/InstructionCombining.cpp @@ -726,7 +726,7 @@ bool InstCombiner::runOnFunction(Function &F) { Instruction *I = WorkList.back(); // Get an instruction from the worklist WorkList.pop_back(); - // Check to see if we can DCE or ConstantPropogate the instruction... + // Check to see if we can DCE or ConstantPropagate the instruction... // Check to see if we can DIE the instruction... if (isInstructionTriviallyDead(I)) { // Add operands to the worklist... @@ -742,7 +742,7 @@ bool InstCombiner::runOnFunction(Function &F) { } } - // Instruction isn't dead, see if we can constant propogate it... + // Instruction isn't dead, see if we can constant propagate it... if (Constant *C = ConstantFoldInstruction(I)) { // Add operands to the worklist... for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) |