X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=gas%2Fdepend.c;h=4a264aa7038cdc11f4b323e5ea2a922aa43a2b85;hb=99d64d771c9db54c567ca1d290a5a8c899540f95;hp=f17c7c8e3a06fe7621a32012321652c43a00230f;hpb=27e232885db363fb545fd2f450e72d929e59b8f6;p=deliverable%2Fbinutils-gdb.git diff --git a/gas/depend.c b/gas/depend.c index f17c7c8e3a..4a264aa703 100644 --- a/gas/depend.c +++ b/gas/depend.c @@ -1,5 +1,5 @@ /* depend.c - Handle dependency tracking. - Copyright (C) 1997, 1998 Free Software Foundation, Inc. + Copyright 1997, 1998, 2000, 2001, 2003 Free Software Foundation, Inc. This file is part of GAS, the GNU Assembler. @@ -15,40 +15,37 @@ You should have received a copy of the GNU General Public License along with GAS; see the file COPYING. If not, write to the Free - Software Foundation, 59 Temple Place - Suite 330, Boston, MA - 02111-1307, USA. */ + Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA + 02110-1301, USA. */ #include "as.h" /* The file to write to, or NULL if no dependencies being kept. */ -static char *dep_file = NULL; +static char * dep_file = NULL; struct dependency -{ - char *file; - struct dependency *next; -}; + { + char * file; + struct dependency * next; + }; /* All the files we depend on. */ -static struct dependency *dep_chain = NULL; +static struct dependency * dep_chain = NULL; /* Current column in output file. */ static int column = 0; -static int quote_string_for_make PARAMS ((FILE *, char *)); -static void wrap_output PARAMS ((FILE *, char *, int)); +static int quote_string_for_make (FILE *, char *); +static void wrap_output (FILE *, char *, int); /* Number of columns allowable. */ #define MAX_COLUMNS 72 - - /* Start saving dependencies, to be written to FILENAME. If this is never called, then dependency tracking is simply skipped. */ void -start_dependencies (filename) - char *filename; +start_dependencies (char *filename) { dep_file = filename; } @@ -56,8 +53,7 @@ start_dependencies (filename) /* Noticed a new filename, so try to register it. */ void -register_dependency (filename) - char *filename; +register_dependency (char *filename) { struct dependency *dep; @@ -66,7 +62,7 @@ register_dependency (filename) for (dep = dep_chain; dep != NULL; dep = dep->next) { - if (! strcmp (filename, dep->file)) + if (!strcmp (filename, dep->file)) return; } @@ -83,15 +79,15 @@ register_dependency (filename) This code is taken from gcc with only minor changes. */ static int -quote_string_for_make (file, src) - FILE *file; - char *src; +quote_string_for_make (FILE *file, char *src) { char *p = src; int i = 0; + for (;;) { char c = *p++; + switch (c) { case '\0': @@ -105,7 +101,8 @@ quote_string_for_make (file, src) the end of a file name; and backslashes in other contexts should not be doubled. */ char *q; - for (q = p - 1; src < q && q[-1] == '\\'; q--) + + for (q = p - 1; src < q && q[-1] == '\\'; q--) { if (file) putc ('\\', file); @@ -118,7 +115,7 @@ quote_string_for_make (file, src) putc ('\\', file); i++; goto ordinary_char; - + case '$': if (file) putc (c, file); @@ -144,17 +141,18 @@ quote_string_for_make (file, src) wrapping as necessary. */ static void -wrap_output (f, string, spacer) - FILE *f; - char *string; - int spacer; +wrap_output (FILE *f, char *string, int spacer) { int len = quote_string_for_make (NULL, string); if (len == 0) return; - if (column && MAX_COLUMNS - 1 /*spacer*/ - 2 /*` \'*/ < column + len) + if (column + && (MAX_COLUMNS + - 1 /* spacer */ + - 2 /* ` \' */ + < column + len)) { fprintf (f, " \\\n "); column = 0; @@ -181,7 +179,7 @@ wrap_output (f, string, spacer) /* Print dependency file. */ void -print_dependencies () +print_dependencies (void) { FILE *f; struct dependency *dep; @@ -189,10 +187,10 @@ print_dependencies () if (dep_file == NULL) return; - f = fopen (dep_file, "w"); + f = fopen (dep_file, FOPEN_WT); if (f == NULL) { - as_warn (_("Can't open `%s' for writing"), dep_file); + as_warn (_("can't open `%s' for writing"), dep_file); return; } @@ -204,5 +202,5 @@ print_dependencies () putc ('\n', f); if (fclose (f)) - as_warn (_("Can't close `%s'"), dep_file); + as_warn (_("can't close `%s'"), dep_file); }