Skip to content
Snippets Groups Projects
Commit 143e0eb0 authored by neil's avatar neil
Browse files

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

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@63692 138bc75d-0d04-0410-961f-82ee72b054a4
parent 7602cd36
No related merge requests found
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;
......
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