diff options
| author | Richard Henderson | 2020-11-06 00:46:44 +0100 |
|---|---|---|
| committer | Richard Henderson | 2021-01-07 16:09:42 +0100 |
| commit | e5e2e4c73926f6f3c1f5da24a350e4345d5ad232 (patch) | |
| tree | ad29060323ecea1b9a0f60d5b08984f310b30e44 /tcg/mips | |
| parent | tcg: Constify tcg_code_gen_epilogue (diff) | |
| download | qemu-e5e2e4c73926f6f3c1f5da24a350e4345d5ad232.tar.gz qemu-e5e2e4c73926f6f3c1f5da24a350e4345d5ad232.tar.xz qemu-e5e2e4c73926f6f3c1f5da24a350e4345d5ad232.zip | |
tcg: Constify TCGLabelQemuLdst.raddr
Now that all native tcg hosts support splitwx,
make this pointer const.
Reviewed-by: Joelle van Dyne <j@getutm.app>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'tcg/mips')
| -rw-r--r-- | tcg/mips/tcg-target.c.inc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tcg/mips/tcg-target.c.inc b/tcg/mips/tcg-target.c.inc index 18fd474593..add157f6c3 100644 --- a/tcg/mips/tcg-target.c.inc +++ b/tcg/mips/tcg-target.c.inc @@ -1283,8 +1283,7 @@ static void add_qemu_ldst_label(TCGContext *s, int is_ld, TCGMemOpIdx oi, label->datahi_reg = datahi; label->addrlo_reg = addrlo; label->addrhi_reg = addrhi; - /* TODO: Cast goes away when all hosts converted */ - label->raddr = (void *)tcg_splitwx_to_rx(raddr); + label->raddr = tcg_splitwx_to_rx(raddr); label->label_ptr[0] = label_ptr[0]; if (TCG_TARGET_REG_BITS < TARGET_LONG_BITS) { label->label_ptr[1] = label_ptr[1]; |
