* c-incpath.c (add_path): Fix sysp assignment.
From-SVN: r63692
This commit is contained in:
parent
e863ea9996
commit
82f6e3eb6c
@ -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
|
||||
|
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user