summaryrefslogtreecommitdiffstats
path: root/gas/depend.c
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2000-07-08 20:34:43 +0000
committerNick Clifton <nickc@redhat.com>2000-07-08 20:34:43 +0000
commitf851444e733613726256efd3e31e1b91d1fd3a27 (patch)
tree6d984ea408c3e3fc5b7d8c52dc8aac12816b446b /gas/depend.c
parentd0313fb7a70439756c08caf7957ecb3fe12a8bde (diff)
downloadppe42-binutils-f851444e733613726256efd3e31e1b91d1fd3a27.tar.gz
ppe42-binutils-f851444e733613726256efd3e31e1b91d1fd3a27.zip
Fix formatting
Diffstat (limited to 'gas/depend.c')
-rw-r--r--gas/depend.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/gas/depend.c b/gas/depend.c
index f17c7c8e3a..276482d26f 100644
--- a/gas/depend.c
+++ b/gas/depend.c
@@ -40,9 +40,7 @@ static void wrap_output PARAMS ((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. */
@@ -66,7 +64,7 @@ register_dependency (filename)
for (dep = dep_chain; dep != NULL; dep = dep->next)
{
- if (! strcmp (filename, dep->file))
+ if (!strcmp (filename, dep->file))
return;
}
@@ -105,7 +103,7 @@ 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 +116,7 @@ quote_string_for_make (file, src)
putc ('\\', file);
i++;
goto ordinary_char;
-
+
case '$':
if (file)
putc (c, file);
@@ -154,7 +152,11 @@ wrap_output (f, string, spacer)
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;
OpenPOWER on IntegriCloud