Skip to content
Snippets Groups Projects
Commit be184f19 authored by benjamin.franksen's avatar benjamin.franksen
Browse files

snc: fixed analysis to deal with new options in source code

parent 5a9184eb
No related branches found
No related tags found
No related merge requests found
......@@ -241,9 +241,11 @@ static void analyse_option(Options *options, Expr *defn)
case 'e': options->newef = optval; break;
case 'l': options->line = optval; break;
case 'm': options->main = optval; break;
case 'p': options->newpv = optval; break;
case 'r': options->reent = optval; break;
case 's': options->safe = optval; break;
case 'w': options->warn = optval; break;
case 'W': options->xwarn = optval; break;
default: report_at_expr(defn,
"warning: unknown option '%s'\n", optname);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment