From: Richard Henderson Date: Fri, 5 Apr 2019 05:02:05 +0000 (+0700) Subject: tcg: Remove TCGOpDef.used X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=70cad3c400bce4e1d364b81c09ac656e6166a573;p=qemu.git tcg: Remove TCGOpDef.used The last user of this field disappeared in f69d277ece4. Reviewed-by: Philippe Mathieu-Daudé Signed-off-by: Richard Henderson --- diff --git a/include/tcg/tcg.h b/include/tcg/tcg.h index e8629b58c8..8804a8c4a2 100644 --- a/include/tcg/tcg.h +++ b/include/tcg/tcg.h @@ -1015,9 +1015,6 @@ typedef struct TCGOpDef { uint8_t nb_oargs, nb_iargs, nb_cargs, nb_args; uint8_t flags; TCGArgConstraint *args_ct; -#if defined(CONFIG_DEBUG_TCG) - int used; -#endif } TCGOpDef; extern TCGOpDef tcg_op_defs[];