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 | 82c89b9f3a9b88bb63ce13b09b4f27fbb72f66fc (patch) | |
tree | 3581663b73bf4260e00041af8eaf725e9f933959 /lib/Transforms/LevelRaise.cpp | |
parent | 1a1046b7bc7d0b8d9ed88e3565a8905e194a47ff (diff) |
Hopefully, the final fix for `[Pp]ropogate'.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6251 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/LevelRaise.cpp')
-rw-r--r-- | lib/Transforms/LevelRaise.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/LevelRaise.cpp b/lib/Transforms/LevelRaise.cpp index b678dffd73..9f93c27f53 100644 --- a/lib/Transforms/LevelRaise.cpp +++ b/lib/Transforms/LevelRaise.cpp @@ -557,7 +557,7 @@ bool RPR::DoRaisePass(Function &F) { for (Function::iterator BB = F.begin(), BBE = F.end(); BB != BBE; ++BB) for (BasicBlock::iterator BI = BB->begin(); BI != BB->end();) { DEBUG(cerr << "Processing: " << *BI); - if (dceInstruction(BI) || doConstantPropogation(BI)) { + if (dceInstruction(BI) || doConstantPropagation(BI)) { Changed = true; ++NumDCEorCP; DEBUG(cerr << "***\t\t^^-- Dead code eliminated!\n"); |