diff options
| author | Richard Henderson | 2020-10-29 17:17:30 +0100 |
|---|---|---|
| committer | Richard Henderson | 2021-01-07 16:09:41 +0100 |
| commit | 755bf9e514e3f60ffa3f0495e6bc524fca74f3be (patch) | |
| tree | 6e381a2092413ce847c1e2de0e37e4efb876647b /tcg/mips | |
| parent | tcg: Adjust tcg_out_label for const (diff) | |
| download | qemu-755bf9e514e3f60ffa3f0495e6bc524fca74f3be.tar.gz qemu-755bf9e514e3f60ffa3f0495e6bc524fca74f3be.tar.xz qemu-755bf9e514e3f60ffa3f0495e6bc524fca74f3be.zip | |
tcg: Adjust tcg_register_jit for const
We must change all targets at once, since all must match
the declaration in tcg.c.
Reviewed-by: Joelle van Dyne <j@getutm.app>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'tcg/mips')
| -rw-r--r-- | tcg/mips/tcg-target.c.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tcg/mips/tcg-target.c.inc b/tcg/mips/tcg-target.c.inc index 6d2c369a85..e9c8c24741 100644 --- a/tcg/mips/tcg-target.c.inc +++ b/tcg/mips/tcg-target.c.inc @@ -2703,7 +2703,7 @@ static const DebugFrame debug_frame = { } }; -void tcg_register_jit(void *buf, size_t buf_size) +void tcg_register_jit(const void *buf, size_t buf_size) { tcg_register_jit_int(buf, buf_size, &debug_frame, sizeof(debug_frame)); } |
