mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-09 02:24:58 -06:00
tcg: get rid of copy_size in TCGOpDef
copy_size is a left-over from the dyngen era, remove it. Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
This commit is contained in:
parent
590bf491a4
commit
239fda311a
6 changed files with 4 additions and 22 deletions
|
@ -69,7 +69,7 @@ static void patch_reloc(uint8_t *code_ptr, int type,
|
|||
tcg_target_long value, tcg_target_long addend);
|
||||
|
||||
static TCGOpDef tcg_op_defs[] = {
|
||||
#define DEF(s, n, copy_size) { #s, 0, 0, n, n, 0, copy_size },
|
||||
#define DEF(s, n) { #s, 0, 0, n, n, 0 },
|
||||
#define DEF2(s, oargs, iargs, cargs, flags) { #s, oargs, iargs, cargs, iargs + oargs + cargs, flags, 0 },
|
||||
#include "tcg-opc.h"
|
||||
#undef DEF
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue