re PR bootstrap/90543 (Build failure on MINGW for gcc-9.1.0)

PR bootstrap/90543
	* optc-save-gen.awk: Fix up printing string option differences.

From-SVN: r276268
This commit is contained in:
Jakub Jelinek 2019-09-29 12:06:40 +02:00 committed by Jakub Jelinek
parent b19d2e5e1a
commit ae517a31c9
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2019-09-29 Jakub Jelinek <jakub@redhat.com>
PR bootstrap/90543
* optc-save-gen.awk: Fix up printing string option differences.
2019-09-29 Kewen Lin <linkw@gcc.gnu.org>
* config/rs6000/rs6000.c (rs6000_builtin_vectorization_cost): Lower

View File

@ -332,7 +332,7 @@ for (i = 0; i < n_opt_string; i++) {
print " indent_to, \"\",";
print " \"" name "\",";
print " ptr1->x_" name " ? ptr1->x_" name " : \"(null)\",";
print " ptr2->x_" name " ? ptr1->x_" name " : \"(null)\");";
print " ptr2->x_" name " ? ptr2->x_" name " : \"(null)\");";
print "";
}