Skip to content

Commit 984d48d

Browse files
committed
Clarifying that two AVERs are implementing .assume.parked in response to review comment <#298 (comment)>.
1 parent 25931a4 commit 984d48d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

code/trans.c

+2-2
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)