mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-14 07:20:35 -08:00
Fix constant names
Copied from Perforce Change: 21782 ServerID: perforce.ravenbrook.com
This commit is contained in:
parent
1f7fd5cac9
commit
0fbdde6251
1 changed files with 4 additions and 4 deletions
|
|
@ -1,6 +1,6 @@
|
|||
/* impl.c.seg: SEGMENTS
|
||||
*
|
||||
* $HopeName: MMsrc!seg.c(trunk.28) $
|
||||
* $HopeName: MMsrc!seg.c(trunk.29) $
|
||||
* Copyright (C) 2000 Harlequin Limited. All rights reserved.
|
||||
*
|
||||
* .design: The design for this module is design.mps.seg.
|
||||
|
|
@ -29,7 +29,7 @@
|
|||
#include "tract.h"
|
||||
#include "mpm.h"
|
||||
|
||||
SRCID(seg, "$HopeName: MMsrc!seg.c(trunk.28) $");
|
||||
SRCID(seg, "$HopeName: MMsrc!seg.c(trunk.29) $");
|
||||
|
||||
|
||||
/* SegGCSeg -- convert generic Seg to GCSeg */
|
||||
|
|
@ -1145,12 +1145,12 @@ static void gcSegSetGreyInternal(Seg seg, TraceSet oldGrey, TraceSet grey)
|
|||
if (oldGrey == TraceSetEMPTY) {
|
||||
if (grey != TraceSetEMPTY) {
|
||||
AVER(RankSetIsSingle(seg->rankSet));
|
||||
for(rank = 0; rank < RankMAX; ++rank)
|
||||
for(rank = 0; rank < RankLIMIT; ++rank)
|
||||
if (RankSetIsMember(seg->rankSet, rank)) {
|
||||
RingInsert(ArenaGreyRing(arena, rank), &gcseg->greyRing);
|
||||
break;
|
||||
}
|
||||
AVER(rank != RankMAX); /* there should've been a match */
|
||||
AVER(rank != RankLIMIT); /* there should've been a match */
|
||||
}
|
||||
} else {
|
||||
if (grey == TraceSetEMPTY)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue