Logic bug caused the string size calculation for the RISC-V format ISA string to be small. This fix allows slack for rv128.
Cc: Palmer Dabbelt <pal...@sifive.com> Cc: Peter Maydell <peter.mayd...@linaro.org> Cc: Eric Blake <ebl...@redhat.com> Signed-off-by: Michael Clark <m...@sifive.com> --- target/riscv/cpu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target/riscv/cpu.c b/target/riscv/cpu.c index 4851890..1456535 100644 --- a/target/riscv/cpu.c +++ b/target/riscv/cpu.c @@ -391,7 +391,7 @@ static const TypeInfo riscv_cpu_type_info = { char *riscv_isa_string(RISCVCPU *cpu) { int i; - size_t maxlen = 5 + ctz32(cpu->env.misa); + size_t maxlen = 8 + ctpop64(cpu->env.misa); char *isa_string = g_new0(char, maxlen); snprintf(isa_string, maxlen, "rv%d", TARGET_LONG_BITS); for (i = 0; i < sizeof(riscv_exts); i++) { -- 2.7.0