diff options
author | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-07-22 20:08:29 +0000 |
---|---|---|
committer | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-07-22 20:08:29 +0000 |
commit | de7d95a1f60280a5120dd5784780cea4fa550a38 (patch) | |
tree | 49ec597a58106b57d7437f5c6a9637c0a19a84d8 | |
parent | 212c64849be791cdeeac81fa7ee30fa42b587dfa (diff) | |
download | gcc-de7d95a1f60280a5120dd5784780cea4fa550a38.tar.gz |
* cppfiles.c (stack_include_file): Correct test of whether
a dependency should be output.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55657 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/cppfiles.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 16453e57e12..3e16c796d28 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2002-07-22 Neil Booth <neil@daikokuya.co.uk> + + * cppfiles.c (stack_include_file): Correct test of whether + a dependency should be output. + 2002-07-22 David Edelsohn <edelsohn@gnu.org> * collect2.c (is_ctor_dtor): Add other possible JOINER values. diff --git a/gcc/cppfiles.c b/gcc/cppfiles.c index 85c9b6e5544..903e02da614 100644 --- a/gcc/cppfiles.c +++ b/gcc/cppfiles.c @@ -319,7 +319,7 @@ stack_include_file (pfile, inc) (inc->foundhere ? inc->foundhere->sysp : 0)); /* For -M, add the file to the dependencies on its first inclusion. */ - if (CPP_OPTION (pfile, print_deps) > sysp && !inc->include_count) + if (CPP_OPTION (pfile, print_deps) > !!sysp && !inc->include_count) deps_add_dep (pfile->deps, inc->name); /* Not in cache? */ |