diff options
author | Andrew Pinski <pinskia@physics.uc.edu> | 2003-12-06 03:47:55 +0000 |
---|---|---|
committer | Andrew Pinski <pinskia@gcc.gnu.org> | 2003-12-05 19:47:55 -0800 |
commit | 6a40fb21e1af1dc1eb1df6e4fa92dc3cbac15ac6 (patch) | |
tree | 7ffbff45d82ad3c2e9c0cf0609f22aca65d1415c | |
parent | 1c9ca54d323e565bbabc8606313b39caeb265ac8 (diff) | |
download | gcc-6a40fb21e1af1dc1eb1df6e4fa92dc3cbac15ac6.zip gcc-6a40fb21e1af1dc1eb1df6e4fa92dc3cbac15ac6.tar.gz gcc-6a40fb21e1af1dc1eb1df6e4fa92dc3cbac15ac6.tar.bz2 |
re PR driver/13211 (using -###, warns about unused linker file)
2003-12-05 Andrew Pinski <pinskia@physics.uc.edu>
PR driver/13211
* gcc.c (execute) Increment execution_count when returning
early because verbose_only_flag is true.
From-SVN: r74356
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/gcc.c | 9 |
2 files changed, 14 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 67e9678..9649c83 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2003-12-05 Andrew Pinski <pinskia@physics.uc.edu> + + PR driver/13211 + * gcc.c (execute) Increment execution_count when returning + early because verbose_only_flag is true. + 2003-12-05 Per Bothner <pbothner@apple.com> * cppfiles.c (file_hash_hash): New static function. @@ -2684,7 +2684,14 @@ execute (void) } fflush (stderr); if (verbose_only_flag != 0) - return 0; + { + /* verbose_only_flag should act as if the spec was + executed, so increment execution_count before + returning. Theis prevent spurious warnings about + unused linker input files, etc. */ + execution_count++; + return 0; + } #ifdef DEBUG notice ("\nGo ahead? (y or n) "); fflush (stderr); |