From 239fda311a6f7784bc4f732795722c909b835651 Mon Sep 17 00:00:00 2001 From: Aurelien Jarno Date: Thu, 3 Jun 2010 19:29:31 +0200 Subject: 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 --- tcg/tcg.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'tcg/tcg.h') diff --git a/tcg/tcg.h b/tcg/tcg.h index 9134700cf0..7fe7ab045d 100644 --- a/tcg/tcg.h +++ b/tcg/tcg.h @@ -48,7 +48,7 @@ typedef uint64_t TCGRegSet; #endif typedef enum TCGOpcode { -#define DEF(s, n, copy_size) INDEX_op_ ## s, +#define DEF(s, n) INDEX_op_ ## s, #include "tcg-opc.h" #undef DEF NB_OPS, @@ -422,7 +422,6 @@ typedef struct TCGOpDef { const char *name; uint8_t nb_oargs, nb_iargs, nb_cargs, nb_args; uint8_t flags; - uint16_t copy_size; TCGArgConstraint *args_ct; int *sorted_args; #if defined(CONFIG_DEBUG_TCG) -- cgit v1.2.3