diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 2016-10-26 15:36:48 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 2016-10-26 15:36:48 +0000 |
commit | 350db3869aee094c49ae80047c759871b16db727 (patch) | |
tree | d69cd4892980d21ddbf2197f9504e1a16ba40965 | |
parent | 483675196e51725ac74de239676474311d843094 (diff) | |
download | gcc-350db3869aee094c49ae80047c759871b16db727.tar.gz |
* config/stormy16/stormy16.c (xstormy16_asm_output_destrutor): Increase
buffer size.
(xstormy16_asm_output_constructor): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@241564 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/stormy16/stormy16.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 7d869b1f259..d778e95bbcf 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,9 @@ 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 size. diff --git a/gcc/config/stormy16/stormy16.c b/gcc/config/stormy16/stormy16.c index 531a7e92505..f74b4d997a6 100644 --- a/gcc/config/stormy16/stormy16.c +++ b/gcc/config/stormy16/stormy16.c @@ -1618,7 +1618,7 @@ static void xstormy16_asm_out_destructor (rtx symbol, int priority) { const char *section = ".dtors"; - char buf[16]; + char buf[18]; /* ??? This only works reliably with the GNU linker. */ if (priority != DEFAULT_INIT_PRIORITY) @@ -1640,7 +1640,7 @@ static void xstormy16_asm_out_constructor (rtx symbol, int priority) { const char *section = ".ctors"; - char buf[16]; + char buf[18]; /* ??? This only works reliably with the GNU linker. */ if (priority != DEFAULT_INIT_PRIORITY) |