re PR driver/64737 (gcc -v print extra blank line)
authorJakub Jelinek <jakub@redhat.com>
Fri, 23 Jan 2015 18:33:31 +0000 (19:33 +0100)
committerJakub Jelinek <jakub@gcc.gnu.org>
Fri, 23 Jan 2015 18:33:31 +0000 (19:33 +0100)
PR driver/64737
* gcc.c (print_configuration): Don't print a blank line at the end
here...
(run_attempt): ... but here unstead.

From-SVN: r220055

gcc/ChangeLog
gcc/gcc.c

index e5eaf5b6026ddbe806f319d32cda50f41a46ff02..75f321b2504c49bddddd9ed6e1533f0221b6f1e3 100644 (file)
@@ -1,5 +1,10 @@
 2015-01-23  Jakub Jelinek  <jakub@redhat.com>
 
+       PR driver/64737
+       * gcc.c (print_configuration): Don't print a blank line at the end
+       here...
+       (run_attempt): ... but here unstead.
+
        PR middle-end/64734
        * omp-low.c (scan_sharing_clauses): Don't ignore
        OMP_CLAUSE_MAP_ZERO_BIAS_ARRAY_SECTION GOMP_MAP_POINTER clauses
index 9f98750aff6068f9db30d67f90cc72330dd1f485..f682c3b07122bd44343ef7dd7bb4508f72467342 100644 (file)
--- a/gcc/gcc.c
+++ b/gcc/gcc.c
@@ -6331,10 +6331,10 @@ print_configuration (FILE *file)
 
   if (! strncmp (version_string, compiler_version, n)
       && compiler_version[n] == 0)
-    fnotice (file, "gcc version %s %s\n\n", version_string,
+    fnotice (file, "gcc version %s %s\n", version_string,
             pkgversion_string);
   else
-    fnotice (file, "gcc driver version %s %sexecuting gcc version %s\n\n",
+    fnotice (file, "gcc driver version %s %sexecuting gcc version %s\n",
             version_string, pkgversion_string, compiler_version);
 
 }
@@ -6438,6 +6438,7 @@ run_attempt (const char **new_argv, const char *out_temp,
     {
       FILE *file_out = fopen (err_temp, "a");
       print_configuration (file_out);
+      fputs ("\n", file_out);
       fclose (file_out);
     }