[llvm-commits] CVS: llvm/lib/Analysis/IntervalPartition.cpp
Misha Brukman
brukman at neo.cs.uiuc.edu
Tue Oct 29 17:02:01 PST 2002
Changes in directory llvm/lib/Analysis:
IntervalPartition.cpp updated: 1.20 -> 1.21
---
Log message:
Fix spelling of `propagate'.
---
Diffs of the changes:
Index: llvm/lib/Analysis/IntervalPartition.cpp
diff -u llvm/lib/Analysis/IntervalPartition.cpp:1.20 llvm/lib/Analysis/IntervalPartition.cpp:1.21
--- llvm/lib/Analysis/IntervalPartition.cpp:1.20 Wed Aug 21 12:09:29 2002
+++ llvm/lib/Analysis/IntervalPartition.cpp Tue Oct 29 17:01:15 2002
@@ -44,7 +44,7 @@
// updatePredecessors - Interval generation only sets the successor fields of
// the interval data structures. After interval generation is complete,
-// run through all of the intervals and propogate successor info as
+// run through all of the intervals and propagate successor info as
// predecessor info.
//
void IntervalPartition::updatePredecessors(Interval *Int) {
@@ -70,7 +70,7 @@
for_each(I, intervals_end(&F),
bind_obj(this, &IntervalPartition::addIntervalToPartition));
- // Now that we know all of the successor information, propogate this to the
+ // Now that we know all of the successor information, propagate this to the
// predecessors for each block...
for_each(Intervals.begin(), Intervals.end(),
bind_obj(this, &IntervalPartition::updatePredecessors));
@@ -98,7 +98,7 @@
for_each(I, intervals_end(IP),
bind_obj(this, &IntervalPartition::addIntervalToPartition));
- // Now that we know all of the successor information, propogate this to the
+ // Now that we know all of the successor information, propagate this to the
// predecessors for each block...
for_each(Intervals.begin(), Intervals.end(),
bind_obj(this, &IntervalPartition::updatePredecessors));
More information about the llvm-commits
mailing list