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
This commit is contained in:
Jeff Law 2016-10-26 09:36:48 -06:00 committed by Jeff Law
parent 10da5b7cbc
commit 42ee9611de
2 changed files with 6 additions and 2 deletions

View File

@ -1,5 +1,9 @@
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.

View File

@ -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
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)