diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2003-05-20 21:01:22 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2003-05-20 21:01:22 +0000 |
commit | 373086db75b284b43957b1c77a1272623969388b (patch) | |
tree | 4b66285679b2d8e153b915273fe12bb82e452d75 /llvm/lib/Transforms/Scalar/CorrelatedExprs.cpp | |
parent | 9392c3ca743f0f85b912b0b4c8dd430105422d10 (diff) | |
download | bcm5719-llvm-373086db75b284b43957b1c77a1272623969388b.tar.gz bcm5719-llvm-373086db75b284b43957b1c77a1272623969388b.zip |
Hopefully, the final fix for `[Pp]ropogate'.
llvm-svn: 6251
Diffstat (limited to 'llvm/lib/Transforms/Scalar/CorrelatedExprs.cpp')
-rw-r--r-- | llvm/lib/Transforms/Scalar/CorrelatedExprs.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/Scalar/CorrelatedExprs.cpp b/llvm/lib/Transforms/Scalar/CorrelatedExprs.cpp index c560e836975..26bdfda6318 100644 --- a/llvm/lib/Transforms/Scalar/CorrelatedExprs.cpp +++ b/llvm/lib/Transforms/Scalar/CorrelatedExprs.cpp @@ -300,7 +300,7 @@ bool CEE::runOnFunction(Function &F) { // TransformRegion - Transform the region starting with BB according to the // calculated region information for the block. Transforming the region // involves analyzing any information this block provides to successors, -// propogating the information to successors, and finally transforming +// propagating the information to successors, and finally transforming // successors. // // This method processes the function in depth first order, which guarantees @@ -885,7 +885,7 @@ void CEE::PropagateRelation(Instruction::BinaryOps Opcode, Value *Op0, return; // If we already have information that contradicts the current information we - // are propogating, ignore this info. Something bad must have happened! + // are propagating, ignore this info. Something bad must have happened! // if (Op1R.contradicts(Opcode, VI)) { Op1R.contradicts(Opcode, VI); |