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 <hpa@zytor.com>
This commit is contained in:
H. Peter Anvin 2016-07-06 11:55:25 -07:00
parent bbb7a1aad9
commit 0fcb488df3

3
nasm.c
View file

@ -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;