From: Robert Pengelly Date: Tue, 22 Jul 2025 22:52:40 +0000 (+0100) Subject: Ignore assume and dgroup X-Git-Url: https://git.candlhat.org/?a=commitdiff_plain;h=23b420bdf12e55f6e96b2cb7a8a77920621b9b3a;p=sasm.git Ignore assume and dgroup --- diff --git a/process.c b/process.c index 474785f..26a3d2c 100644 --- a/process.c +++ b/process.c @@ -981,6 +981,13 @@ static void process_line (char *line, char *line_end) { goto check; } + if (xstrcasecmp (arg, "assume") == 0 || xstrcasecmp (arg, "dgroup") == 0) { + + ignore_rest_of_line (&line); + goto check; + + } + if (xstrcasecmp (arg, "equ") == 0) { report_line_at (get_filename (), get_line_number (), REPORT_ERROR, start, caret, "equ not preceded by label");