* cppfiles.c (stack_include_file): Use MAX of sysp.
From-SVN: r40536
This commit is contained in:
parent
69ca5554fd
commit
11bca3093b
@ -1,3 +1,7 @@
|
||||
2001-03-16 Alexandre Oliva <aoliva@redhat.com>
|
||||
|
||||
* cppfiles.c (stack_include_file): Use MAX of sysp.
|
||||
|
||||
2001-03-15 Steve Ellcey <sje@cup.hp.com>
|
||||
|
||||
* config.gcc (ia64*-*-hpux*): New case.
|
||||
|
@ -277,8 +277,8 @@ stack_include_file (pfile, inc)
|
||||
|
||||
/* We'll try removing deps_sysp after the release of 3.0. */
|
||||
deps_sysp = pfile->system_include_depth != 0;
|
||||
sysp = ((pfile->buffer && pfile->buffer->sysp)
|
||||
|| (inc->foundhere && inc->foundhere->sysp));
|
||||
sysp = MAX ((pfile->buffer ? pfile->buffer->sysp : 0),
|
||||
(inc->foundhere ? inc->foundhere->sysp : 0));
|
||||
|
||||
/* For -M, add the file to the dependencies on its first inclusion. */
|
||||
if (CPP_OPTION (pfile, print_deps) > deps_sysp && !inc->include_count)
|
||||
|
Loading…
Reference in New Issue
Block a user