Commit 42ee9611 by Jeff Law Committed by Jeff Law

stormy16.c (xstormy16_asm_output_destrutor): Increase buffer size.

	* config/stormy16/stormy16.c (xstormy16_asm_output_destrutor): Increase
	buffer size.
	(xstormy16_asm_output_constructor): Likewise.

From-SVN: r241564
parent 10da5b7c
2016-10-26 Jeff Law <law@redhat.com> 2016-10-26 Jeff Law <law@redhat.com>
* config/stormy16/stormy16.c (xstormy16_asm_output_destrutor): Increase
buffer size.
(xstormy16_asm_output_constructor): Likewise.
* config/pa/pa.c (pa_asm_output_mi_thunk): Increase buffer * config/pa/pa.c (pa_asm_output_mi_thunk): Increase buffer
size. size.
......
...@@ -1618,7 +1618,7 @@ static void ...@@ -1618,7 +1618,7 @@ static void
xstormy16_asm_out_destructor (rtx symbol, int priority) xstormy16_asm_out_destructor (rtx symbol, int priority)
{ {
const char *section = ".dtors"; const char *section = ".dtors";
char buf[16]; char buf[18];
/* ??? This only works reliably with the GNU linker. */ /* ??? This only works reliably with the GNU linker. */
if (priority != DEFAULT_INIT_PRIORITY) if (priority != DEFAULT_INIT_PRIORITY)
...@@ -1640,7 +1640,7 @@ static void ...@@ -1640,7 +1640,7 @@ static void
xstormy16_asm_out_constructor (rtx symbol, int priority) xstormy16_asm_out_constructor (rtx symbol, int priority)
{ {
const char *section = ".ctors"; const char *section = ".ctors";
char buf[16]; char buf[18];
/* ??? This only works reliably with the GNU linker. */ /* ??? This only works reliably with the GNU linker. */
if (priority != DEFAULT_INIT_PRIORITY) if (priority != DEFAULT_INIT_PRIORITY)
......
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