From 0fcb488df31b3f75efd2ae92ea194b7aa5f78253 Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Wed, 6 Jul 2016 11:55:25 -0700 Subject: [PATCH] Don't suppress ERR_DEBUG messages from the list file In some cases, debug messages in the list file can be enormously powerful for finding problems. Signed-off-by: H. Peter Anvin --- nasm.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/nasm.c b/nasm.c index 4df3c373..02e34a18 100644 --- a/nasm.c +++ b/nasm.c @@ -2019,8 +2019,7 @@ static void nasm_verror_common(int severity, const char *fmt, va_list args) * Don't suppress this with skip_this_pass(), or we don't get * pass1 or preprocessor warnings in the list file */ - if ((severity & ERR_MASK) >= ERR_WARNING) - lfmt->error(severity, pfx, msg); + lfmt->error(severity, pfx, msg); if (severity & ERR_USAGE) want_usage = true;