diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2003-08-21 22:14:26 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2003-08-21 22:14:26 +0000 |
commit | be372b91e11b079a1335fdf0ac30a9b80a082a06 (patch) | |
tree | ac9c878b43155368257e81d779361067a30da6bd /llvm/lib/Transforms/Scalar/ADCE.cpp | |
parent | a73b95821ad303a86910713f2b88ff73321472be (diff) | |
download | bcm5719-llvm-be372b91e11b079a1335fdf0ac30a9b80a082a06.tar.gz bcm5719-llvm-be372b91e11b079a1335fdf0ac30a9b80a082a06.zip |
The word `dependent' has no `a'.
llvm-svn: 8030
Diffstat (limited to 'llvm/lib/Transforms/Scalar/ADCE.cpp')
-rw-r--r-- | llvm/lib/Transforms/Scalar/ADCE.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/Scalar/ADCE.cpp b/llvm/lib/Transforms/Scalar/ADCE.cpp index a22cdce641b..ffb57d0d6ae 100644 --- a/llvm/lib/Transforms/Scalar/ADCE.cpp +++ b/llvm/lib/Transforms/Scalar/ADCE.cpp @@ -96,13 +96,13 @@ Pass *createAggressiveDCEPass() { return new ADCE(); } void ADCE::markBlockAlive(BasicBlock *BB) { // Mark the basic block as being newly ALIVE... and mark all branches that - // this block is control dependant on as being alive also... + // this block is control dependent on as being alive also... // PostDominanceFrontier &CDG = getAnalysis<PostDominanceFrontier>(); PostDominanceFrontier::const_iterator It = CDG.find(BB); if (It != CDG.end()) { - // Get the blocks that this node is control dependant on... + // Get the blocks that this node is control dependent on... const PostDominanceFrontier::DomSetType &CDB = It->second; for_each(CDB.begin(), CDB.end(), // Mark all their terminators as live bind_obj(this, &ADCE::markTerminatorLive)); |