]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
(process_command): Minor white space cleanups to last patch.
authorDoug Evans <dje@gnu.org>
Wed, 6 Apr 1994 00:07:56 +0000 (00:07 +0000)
committerDoug Evans <dje@gnu.org>
Wed, 6 Apr 1994 00:07:56 +0000 (00:07 +0000)
From-SVN: r6969

gcc/gcc.c

index 0871edb53d28cc72cbb11ad5ab2bbf9385af980d..00ab5ac4a13605d8d17ce428f08d35560b5004c0 100644 (file)
--- a/gcc/gcc.c
+++ b/gcc/gcc.c
@@ -2432,14 +2432,14 @@ process_command (argc, argv)
                add_prefix (&include_prefix, concat (value, "include", ""),
                            1, 0, 0);
 
-               /* As a kludge, if the arg is "[blah/]stageN/", just add
+               /* As a kludge, if the arg is "[foo/]stageN/", just add
                   "include" to the include prefix.  */
                {
                  int len = strlen (value);
-                 if ((len == 7 || (len > 7 && value[len-8] == '/'))
-                     && strncmp (value+len-7, "stage", 5) == 0
-                     && isdigit (value[len-2])
-                     && value[len-1] == '/')
+                 if ((len == 7 || (len > 7 && value[len - 8] == '/'))
+                     && strncmp (value + len - 7, "stage", 5) == 0
+                     && isdigit (value[len - 2])
+                     && value[len - 1] == '/')
                    add_prefix (&include_prefix, "include", 1, 0, 0);
                }
              }