Re: [Qemu-devel] [PATCH v1 1/1] tcg/riscv: Fix RISC-VH host build failure

2019-06-25 Thread Richard Henderson
On 6/20/19 4:04 PM, Alistair Francis wrote: > Commit 269bd5d8 "cpu: Move the softmmu tlb to CPUNegativeOffsetState' > broke the RISC-V host build as there are two variables that are used but > not defined. > > This patch renames the undefined variables mask_off and table_off to the > existing (but

[Qemu-devel] [PATCH v1 1/1] tcg/riscv: Fix RISC-VH host build failure

2019-06-20 Thread Alistair Francis
Commit 269bd5d8 "cpu: Move the softmmu tlb to CPUNegativeOffsetState' broke the RISC-V host build as there are two variables that are used but not defined. This patch renames the undefined variables mask_off and table_off to the existing (but unused) mask_ofs and table_ofs variables. Signed-off-b