+2017-01-23 Andreas Tobler <andreast@gcc.gnu.org>
+
+ * config/aarch64/aarch64.c (aarch64_elf_asm_constructor): Increase
+ size of buf.
+ (aarch64_elf_asm_destructor): Likewise.
+
2017-01-23 Bernd Schmidt <bschmidt@redhat.com>
PR rtl-optimization/78634
else
{
section *s;
- char buf[18];
+ /* While priority is known to be in range [0, 65535], so 18 bytes
+ would be enough, the compiler might not know that. To avoid
+ -Wformat-truncation false positive, use a larger size. */
+ char buf[23];
snprintf (buf, sizeof (buf), ".init_array.%.5u", priority);
s = get_section (buf, SECTION_WRITE, NULL);
switch_to_section (s);
else
{
section *s;
- char buf[18];
+ /* While priority is known to be in range [0, 65535], so 18 bytes
+ would be enough, the compiler might not know that. To avoid
+ -Wformat-truncation false positive, use a larger size. */
+ char buf[23];
snprintf (buf, sizeof (buf), ".fini_array.%.5u", priority);
s = get_section (buf, SECTION_WRITE, NULL);
switch_to_section (s);