stormy16.c (xstormy16_asm_output_destrutor): Increase buffer size.
authorJeff Law <law@redhat.com>
Wed, 26 Oct 2016 15:36:48 +0000 (09:36 -0600)
committerJeff Law <law@gcc.gnu.org>
Wed, 26 Oct 2016 15:36:48 +0000 (09:36 -0600)
* config/stormy16/stormy16.c (xstormy16_asm_output_destrutor): Increase
buffer size.
(xstormy16_asm_output_constructor): Likewise.

From-SVN: r241564

gcc/ChangeLog
gcc/config/stormy16/stormy16.c

index 7d869b1f259eb94969ccc69fe1f74bb5156f94e1..d778e95bbcfc48ad7f8ab0762a16c7ac4b8beaae 100644 (file)
@@ -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.
 
index 531a7e92505c9e5d190feb5462c0176439fa7472..f74b4d997a683e2b58180a21dfe9cd4c105af287 100644 (file)
@@ -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)