mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 10:13:56 -06:00
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>
This commit is contained in:
parent
92ab8e7d62
commit
755bf9e514
10 changed files with 14 additions and 14 deletions
|
@ -3847,7 +3847,7 @@ static DebugFrame debug_frame = {
|
|||
}
|
||||
};
|
||||
|
||||
void tcg_register_jit(void *buf, size_t buf_size)
|
||||
void tcg_register_jit(const void *buf, size_t buf_size)
|
||||
{
|
||||
uint8_t *p = &debug_frame.fde_reg_ofs[3];
|
||||
int i;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue