Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion asm/assemble.c
Original file line number Diff line number Diff line change
Expand Up @@ -643,8 +643,10 @@ static void out_eops(struct out_data *data, const extop *e)
break;

case EOT_EXTOP:
while (dup--)
while (dup) {
out_eops(data, e->val.subexpr);
dup--;
}
break;

case EOT_DB_NUMBER:
Expand Down