mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-11-01 15:17:25 +00:00
Fix spelling of `propagate'.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4423 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user