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

From-SVN: r63692
This commit is contained in:
Neil Booth 2003-03-02 22:09:29 +00:00 committed by Neil Booth
parent e863ea9996
commit 82f6e3eb6c
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
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>
* params.def: Introduce parameter max-inline-insns-rtl for

View File

@ -309,7 +309,7 @@ add_path (path, chain, cxx_aware)
p->next = NULL;
p->name = path;
if (chain == SYSTEM || chain == AFTER)
p->sysp = 1 + (cxx_aware != 0);
p->sysp = 1 + !cxx_aware;
else
p->sysp = 0;