Skip to content

Commit 8942e30

Browse files
committed
Clarifying that two AVERs are implementing .assume.parked in response to review comment <#298 (comment)>.
1 parent 37a4e5c commit 8942e30

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

code/trans.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,8 +163,8 @@ Res TransformAddOldNew(Transform transform,
163163
lists (old_list, new_list), using ArenaRead. Insisting on
164164
parking keeps things simple. */
165165
arena = transform->arena;
166-
AVER(ArenaGlobals(arena)->clamped);
167-
AVER(arena->busyTraces == TraceSetEMPTY);
166+
AVER(ArenaGlobals(arena)->clamped); /* .assume.parked */
167+
AVER(arena->busyTraces == TraceSetEMPTY); /* .assume.parked */
168168

169169
res = TableGrow(transform->oldToNew, count);
170170
if (res != ResOK)

0 commit comments

Comments
 (0)