aboutsummaryrefslogtreecommitdiffstats
path: root/mps/code/trace.c
diff options
context:
space:
mode:
authorRichard Brooksby2013-02-18 15:46:39 +0000
committerRichard Brooksby2013-02-18 15:46:39 +0000
commitc4d6a2de1fe68470485c523b54f1c0d59ff87f2d (patch)
tree5ae114ac8651dac869663f2a23a05b062dfcfc5b /mps/code/trace.c
parent2706097eab7b3d1aa9429ef0e4ea1ac9f3c6edbe (diff)
downloademacs-c4d6a2de1fe68470485c523b54f1c0d59ff87f2d.tar.gz
emacs-c4d6a2de1fe68470485c523b54f1c0d59ff87f2d.zip
Merging spelling corrections contributed by bruce mitchener.
See <https://github.com/datafueled/memory-pool-system/commit/1c80ccb634669283a4c1244cac42e59e1b5adee2>. Copied from Perforce Change: 180956 ServerID: perforce.ravenbrook.com
Diffstat (limited to 'mps/code/trace.c')
-rw-r--r--mps/code/trace.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mps/code/trace.c b/mps/code/trace.c
index e7ab41c8d80..9401696ba2d 100644
--- a/mps/code/trace.c
+++ b/mps/code/trace.c
@@ -990,7 +990,7 @@ static Bool traceFindGrey(Seg *segReturn, Rank *rankReturn,
990 Rank band = traceBand(trace); 990 Rank band = traceBand(trace);
991 991
992 /* Within the R band we look for segments of rank R first, */ 992 /* Within the R band we look for segments of rank R first, */
993 /* then succesively earlier ones. Slight hack: We never */ 993 /* then successively earlier ones. Slight hack: We never */
994 /* expect to find any segments of RankAMBIG, so we use */ 994 /* expect to find any segments of RankAMBIG, so we use */
995 /* this as a terminating condition for the loop. */ 995 /* this as a terminating condition for the loop. */
996 for(rank = band; rank > RankAMBIG; --rank) { 996 for(rank = band; rank > RankAMBIG; --rank) {
@@ -1245,7 +1245,7 @@ void TraceSegAccess(Arena arena, Seg seg, AccessSet mode)
1245 AVER((mode & SegSM(seg) & AccessREAD) == 0 1245 AVER((mode & SegSM(seg) & AccessREAD) == 0
1246 || TraceSetInter(SegGrey(seg), arena->flippedTraces) != TraceSetEMPTY); 1246 || TraceSetInter(SegGrey(seg), arena->flippedTraces) != TraceSetEMPTY);
1247 1247
1248 /* If it's a write acess, then the segment must have a summary that */ 1248 /* If it's a write access, then the segment must have a summary that */
1249 /* is smaller than the mutator's summary (which is assumed to be */ 1249 /* is smaller than the mutator's summary (which is assumed to be */
1250 /* RefSetUNIV). */ 1250 /* RefSetUNIV). */
1251 AVER((mode & SegSM(seg) & AccessWRITE) == 0 || SegSummary(seg) != RefSetUNIV); 1251 AVER((mode & SegSM(seg) & AccessWRITE) == 0 || SegSummary(seg) != RefSetUNIV);