From 23b420bdf12e55f6e96b2cb7a8a77920621b9b3a Mon Sep 17 00:00:00 2001 From: Robert Pengelly Date: Tue, 22 Jul 2025 23:52:40 +0100 Subject: [PATCH] Ignore assume and dgroup --- process.c | 7 +++++++ 1 file changed, 7 insertions(+) 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"); -- 2.34.1