re PR preprocessor/83722 (the ICE dumper doesn't comment-out some error messages)
authorJakub Jelinek <jakub@redhat.com>
Tue, 9 Jan 2018 08:02:01 +0000 (09:02 +0100)
committerJakub Jelinek <jakub@gcc.gnu.org>
Tue, 9 Jan 2018 08:02:01 +0000 (09:02 +0100)
PR preprocessor/83722
* gcc.c (try_generate_repro): Pass
&temp_stderr_files[RETRY_ICE_ATTEMPTS - 1] rather than
&temp_stdout_files[RETRY_ICE_ATTEMPTS - 1] as last argument to
do_report_bug.

From-SVN: r256367

gcc/ChangeLog
gcc/gcc.c

index d8e84c57aacbadd9f75d62c37ec2c0e80a64fa64..7a7736fee19f331c2992a810c7dfeb06054f782c 100644 (file)
@@ -1,3 +1,11 @@
+2018-01-09  Jakub Jelinek  <jakub@redhat.com>
+
+       PR preprocessor/83722
+       * gcc.c (try_generate_repro): Pass
+       &temp_stderr_files[RETRY_ICE_ATTEMPTS - 1] rather than
+       &temp_stdout_files[RETRY_ICE_ATTEMPTS - 1] as last argument to
+       do_report_bug.
+
 2018-01-08  Monk Chiang  <sh.chiang04@gmail.com>
            Kito Cheng  <kito.cheng@gmail.com>
 
index 26930fa7d3949c5ecdcc72a90ae8197a26e8d537..f55883a9659d205feb09d6b60b98f54a26757984 100644 (file)
--- a/gcc/gcc.c
+++ b/gcc/gcc.c
@@ -7035,8 +7035,8 @@ try_generate_repro (const char **argv)
 
     /* In final attempt we append compiler options and preprocesssed code to last
        generated .out file with configuration and backtrace.  */
-    char **output = &temp_stdout_files[RETRY_ICE_ATTEMPTS - 1];
-    do_report_bug (new_argv, nargs, stderr_commented, output);
+    char **err = &temp_stderr_files[RETRY_ICE_ATTEMPTS - 1];
+    do_report_bug (new_argv, nargs, stderr_commented, err);
   }
 
 out: