diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2019-04-05 12:02:05 +0700 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2020-10-08 05:57:32 -0500 |
commit | 70cad3c400bce4e1d364b81c09ac656e6166a573 (patch) | |
tree | 75e62f5fcc83695f40b970c64495f38253111e37 /include/tcg | |
parent | bc2b17e6ea582ef3ade2bdca750de269c674c915 (diff) |
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.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[]; |