diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 325972faeb..0f47a20fdd 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,8 @@ +2018-02-26 Alan Modra + + * crx-dis.c (getregliststring): Allocate a large enough buffer + to silence false positive gcc8 warning. + 2018-02-22 Shea Levy * disassemble.c (ARCH_riscv): Define if ARCH_all. diff --git a/opcodes/crx-dis.c b/opcodes/crx-dis.c index a70ab81aac..27a2aa8028 100644 --- a/opcodes/crx-dis.c +++ b/opcodes/crx-dis.c @@ -244,7 +244,7 @@ powerof2 (int x) void getregliststring (int mask, char *string, enum REG_ARG_TYPE core_cop) { - char temp_string[5]; + char temp_string[16]; int i; string[0] = '{';