Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion asm/directiv.c
Original file line number Diff line number Diff line change
Expand Up @@ -526,8 +526,9 @@ bool process_directives(char *directive)
push_warnings();
else if (!nasm_stricmp(value, "pop"))
pop_warnings();
} else {
set_warning_status(value);
}
set_warning_status(value);
break;

case D_CPU: /* [CPU] */
Expand Down
2 changes: 1 addition & 1 deletion travis/test/warnstack.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"id": "warnstack",
"format": "bin",
"source": "warnstack.asm",
"option": "-Ox",
"option": "-Ox -w+unknown-warning",
"target": [
{ "output": "warnstack.bin" },
{ "stderr": "warnstack.stderr" }
Expand Down