Commit 82f6e3eb by Neil Booth Committed by Neil Booth

* c-incpath.c (add_path): Fix sysp assignment.

From-SVN: r63692
parent e863ea99
2003-03-02 Neil Booth <neil@daikokuya.co.uk>
* c-incpath.c (add_path): Fix sysp assignment.
2003-03-02 Kurt Garloff <garloff@suse.de> 2003-03-02 Kurt Garloff <garloff@suse.de>
* params.def: Introduce parameter max-inline-insns-rtl for * params.def: Introduce parameter max-inline-insns-rtl for
......
...@@ -309,7 +309,7 @@ add_path (path, chain, cxx_aware) ...@@ -309,7 +309,7 @@ add_path (path, chain, cxx_aware)
p->next = NULL; p->next = NULL;
p->name = path; p->name = path;
if (chain == SYSTEM || chain == AFTER) if (chain == SYSTEM || chain == AFTER)
p->sysp = 1 + (cxx_aware != 0); p->sysp = 1 + !cxx_aware;
else else
p->sysp = 0; p->sysp = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment