[PATCH 06/43] tcg: Remove TCGOpDef.used

Richard Henderson posted 43 patches 4 years, 7 months ago
Maintainers: Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>, Andrzej Zaborowski <balrogg@gmail.com>, Richard Henderson <richard.henderson@linaro.org>, Richard Henderson <rth@twiddle.net>, Stefan Weil <sw@weilnetz.de>, Cornelia Huck <cohuck@redhat.com>, Aleksandar Rikalo <aleksandar.rikalo@syrmia.com>, Palmer Dabbelt <palmer@dabbelt.com>, Jiaxun Yang <jiaxun.yang@flygoat.com>, Aurelien Jarno <aurelien@aurel32.net>, Huacai Chen <chenhc@lemote.com>, Alistair Francis <Alistair.Francis@wdc.com>, Thomas Huth <thuth@redhat.com>
There is a newer version of this series
[PATCH 06/43] tcg: Remove TCGOpDef.used
Posted by Richard Henderson 4 years, 7 months ago
The last user of this field disappeared in f69d277ece4.

Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
 include/tcg/tcg.h | 3 ---
 1 file changed, 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[];
-- 
2.25.1


Re: [PATCH 06/43] tcg: Remove TCGOpDef.used
Posted by Philippe Mathieu-Daudé 4 years, 6 months ago
On 9/9/20 2:16 AM, Richard Henderson wrote:
> The last user of this field disappeared in f69d277ece4.
> 
> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
> ---
>  include/tcg/tcg.h | 3 ---
>  1 file changed, 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[];
> 

Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>