mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-01-18 16:25:05 +08:00
error: remove unused ERR_TOPFILE
The flag ERR_TOPFILE was not used anywhere, remove it. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
This commit is contained in:
parent
950dee9edc
commit
dea7f4733f
@ -1810,8 +1810,10 @@ static void nasm_verror_gnu(int severity, const char *fmt, va_list ap)
|
||||
|
||||
if (!(severity & ERR_NOFILE)) {
|
||||
src_get(&lineno, ¤tfile);
|
||||
if (!currentfile || (severity & ERR_TOPFILE)) {
|
||||
currentfile = inname[0] ? inname : outname[0] ? outname : NULL;
|
||||
if (!currentfile) {
|
||||
currentfile = inname && inname[0] ?
|
||||
inname : outname && outname[0] ?
|
||||
outname : NULL;
|
||||
lineno = 0;
|
||||
}
|
||||
}
|
||||
|
@ -72,7 +72,6 @@ static inline vefunc nasm_set_verror(vefunc ve)
|
||||
* and dump core for reference */
|
||||
#define ERR_MASK 0x00000007 /* mask off the above codes */
|
||||
#define ERR_NOFILE 0x00000010 /* don't give source file name/line */
|
||||
#define ERR_TOPFILE 0x00000020 /* give the top input file name only */
|
||||
#define ERR_USAGE 0x00000040 /* print a usage message */
|
||||
#define ERR_PASS1 0x00000080 /* only print this error on pass 1 */
|
||||
#define ERR_PASS2 0x00000100 /* only print this error on pass 2 */
|
||||
|
Loading…
Reference in New Issue
Block a user