aboutsummaryrefslogtreecommitdiff
path: root/include/tcg
diff options
context:
space:
mode:
authorRichard Henderson <richard.henderson@linaro.org>2019-04-05 12:02:05 +0700
committerRichard Henderson <richard.henderson@linaro.org>2020-10-08 05:57:32 -0500
commit70cad3c400bce4e1d364b81c09ac656e6166a573 (patch)
tree75e62f5fcc83695f40b970c64495f38253111e37 /include/tcg
parentbc2b17e6ea582ef3ade2bdca750de269c674c915 (diff)
downloadqemu-70cad3c400bce4e1d364b81c09ac656e6166a573.zip
qemu-70cad3c400bce4e1d364b81c09ac656e6166a573.tar.gz
qemu-70cad3c400bce4e1d364b81c09ac656e6166a573.tar.bz2
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')
-rw-r--r--include/tcg/tcg.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/tcg/tcg.h b/include/tcg/tcg.h
index e8629b5..8804a8c 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[];