Commit c5a13998 by Martin Sebor Committed by Martin Sebor

PR bootstrap/77753 - [7 Regression] broken profiledbootstrap due to

gcc/ChangeLog:

	PR bootstrap/77753
	* varasm.c (assemble_addr_to_section): Increase local buffer size.

From-SVN: r240581
parent b23d063b
2016-09-28 Martin Sebor <msebor@redhat.com>
PR bootstrap/77753
* varasm.c (assemble_addr_to_section): Increase local buffer size.
2016-09-27 Richard Biener <rguenther@suse.de>
* dwarf2out.c (cu_die_list): New global.
......
......@@ -1556,7 +1556,9 @@ assemble_addr_to_section (rtx symbol, section *sec)
section *
get_cdtor_priority_section (int priority, bool constructor_p)
{
char buf[16];
/* Buffer conservatively large enough for the full range of a 32-bit
int plus the text below. */
char buf[18];
/* ??? This only works reliably with the GNU linker. */
sprintf (buf, "%s.%.5u",
......
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