Commit 103197a1 by Xiong Hu Luo Committed by Xiong Hu Luo

Fix dump message issue

'}' is missed at the end.

gcc/ChangeLog:

2019-10-14  Xiong Hu Luo  <luoxhu@linux.ibm.com>

	* tree-sra.c (dump_access): Add missing braces.

From-SVN: r276948
parent 13378504
2019-10-14 Xiong Hu Luo <luoxhu@linux.ibm.com>
* tree-sra.c (dump_access): Add missing braces.
2019-10-13 Iain Sandoe <iain@sandoe.co.uk> 2019-10-13 Iain Sandoe <iain@sandoe.co.uk>
* config/darwin.c (machopic_indirection_name): Rework the * config/darwin.c (machopic_indirection_name): Rework the
......
...@@ -392,7 +392,7 @@ dump_access (FILE *f, struct access *access, bool grp) ...@@ -392,7 +392,7 @@ dump_access (FILE *f, struct access *access, bool grp)
"grp_hint = %d, grp_covered = %d, " "grp_hint = %d, grp_covered = %d, "
"grp_unscalarizable_region = %d, grp_unscalarized_data = %d, " "grp_unscalarizable_region = %d, grp_unscalarized_data = %d, "
"grp_same_access_path = %d, grp_partial_lhs = %d, " "grp_same_access_path = %d, grp_partial_lhs = %d, "
"grp_to_be_replaced = %d, grp_to_be_debug_replaced = %d\n", "grp_to_be_replaced = %d, grp_to_be_debug_replaced = %d}\n",
access->grp_read, access->grp_write, access->grp_assignment_read, access->grp_read, access->grp_write, access->grp_assignment_read,
access->grp_assignment_write, access->grp_scalar_read, access->grp_assignment_write, access->grp_scalar_read,
access->grp_scalar_write, access->grp_total_scalarization, access->grp_scalar_write, access->grp_total_scalarization,
...@@ -402,7 +402,7 @@ dump_access (FILE *f, struct access *access, bool grp) ...@@ -402,7 +402,7 @@ dump_access (FILE *f, struct access *access, bool grp)
access->grp_to_be_replaced, access->grp_to_be_debug_replaced); access->grp_to_be_replaced, access->grp_to_be_debug_replaced);
else else
fprintf (f, ", write = %d, grp_total_scalarization = %d, " fprintf (f, ", write = %d, grp_total_scalarization = %d, "
"grp_partial_lhs = %d\n", "grp_partial_lhs = %d}\n",
access->write, access->grp_total_scalarization, access->write, access->grp_total_scalarization,
access->grp_partial_lhs); access->grp_partial_lhs);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment