[llvm-commits] CVS: llvm/lib/Transforms/Scalar/ADCE.cpp LowerAllocations.cpp
Misha Brukman
brukman at cs.uiuc.edu
Thu Aug 21 17:13:04 PDT 2003
Changes in directory llvm/lib/Transforms/Scalar:
ADCE.cpp updated: 1.58 -> 1.59
LowerAllocations.cpp updated: 1.38 -> 1.39
---
Log message:
The word `dependent' has no `a'.
---
Diffs of the changes:
Index: llvm/lib/Transforms/Scalar/ADCE.cpp
diff -u llvm/lib/Transforms/Scalar/ADCE.cpp:1.58 llvm/lib/Transforms/Scalar/ADCE.cpp:1.59
--- llvm/lib/Transforms/Scalar/ADCE.cpp:1.58 Mon Aug 18 09:33:38 2003
+++ llvm/lib/Transforms/Scalar/ADCE.cpp Thu Aug 21 17:12:22 2003
@@ -96,13 +96,13 @@
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));
Index: llvm/lib/Transforms/Scalar/LowerAllocations.cpp
diff -u llvm/lib/Transforms/Scalar/LowerAllocations.cpp:1.38 llvm/lib/Transforms/Scalar/LowerAllocations.cpp:1.39
--- llvm/lib/Transforms/Scalar/LowerAllocations.cpp:1.38 Mon Aug 18 09:33:38 2003
+++ llvm/lib/Transforms/Scalar/LowerAllocations.cpp Thu Aug 21 17:12:22 2003
@@ -1,6 +1,6 @@
//===- LowerAllocations.cpp - Reduce malloc & free insts to calls ---------===//
//
-// The LowerAllocations transformation is a target dependant tranformation
+// The LowerAllocations transformation is a target dependent tranformation
// because it depends on the size of data types and alignment constraints.
//
//===----------------------------------------------------------------------===//
More information about the llvm-commits
mailing list