diff options
author | Richard Henderson | 2019-04-05 07:02:05 +0200 |
---|---|---|
committer | Richard Henderson | 2020-10-08 12:57:32 +0200 |
commit | 70cad3c400bce4e1d364b81c09ac656e6166a573 (patch) | |
tree | 75e62f5fcc83695f40b970c64495f38253111e37 /include/tcg/tcg.h | |
parent | tcg: Move some TCG_CT_* bits to TCGArgConstraint bitfields (diff) | |
download | qemu-70cad3c400bce4e1d364b81c09ac656e6166a573.tar.gz qemu-70cad3c400bce4e1d364b81c09ac656e6166a573.tar.xz qemu-70cad3c400bce4e1d364b81c09ac656e6166a573.zip |
tcg: Remove TCGOpDef.used
The last user of this field disappeared in f69d277ece4.
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'include/tcg/tcg.h')
-rw-r--r-- | include/tcg/tcg.h | 3 |
1 files changed, 0 insertions, 3 deletions
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[]; |