This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug driver/22544] [4.0/4.1 Regression] gcc ignores input file given on the command line



------- Comment #15 from rep dot nop at aon dot at  2005-10-17 07:09 -------
(In reply to comment #11)
> (In reply to comment #9)
> > Also your patch had odd whitespace.
> 
> Do you mean tabs or something else?
> tabs = 8 spaces in the GNU coding style.
> 
I mean something else, specifically:
@@ -6425,7 +6432,7 @@ main (int argc, const char **argv)
   if (combine_flag)
     combine_inputs = true;
   else
-    combine_inputs = false;
+    combine_inputs = false;  <--this (two extra spaces)

   for (i = 0; (int) i < n_infiles; i++)
     {
@@ -6456,6 +6463,9 @@ main (int argc, const char **argv)
       infiles[i].compiled = false;
       infiles[i].preprocessed = false;
     }
+    <-- this (another space error)
+  if (!combine_inputs && have_c && have_o && n_infiles > 1)


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=22544


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]