diff mbox

[1/2] translate-all: remove redundant setting of tcg_ctx.code_gen_buffer_size

Message ID 1461283314-2353-1-git-send-email-cota@braap.org
State New
Headers show

Commit Message

Emilio Cota April 22, 2016, 12:01 a.m. UTC
The setting of tcg_ctx.code_gen_buffer_size is done by the only caller of
size_code_gen_buffer(), which is code_gen_alloc():

  $ git grep size_code_gen_buffer
  translate-all.c:static inline size_t size_code_gen_buffer(size_t tb_size)
  translate-all.c:    tcg_ctx.code_gen_buffer_size = size_code_gen_buffer(tb_size);

Signed-off-by: Emilio G. Cota <cota@braap.org>
---
 translate-all.c | 1 -
 1 file changed, 1 deletion(-)

Comments

Richard Henderson April 24, 2016, 10:55 p.m. UTC | #1
On 04/21/2016 05:01 PM, Emilio G. Cota wrote:
> The setting of tcg_ctx.code_gen_buffer_size is done by the only caller of
> size_code_gen_buffer(), which is code_gen_alloc():
>
>    $ git grep size_code_gen_buffer
>    translate-all.c:static inline size_t size_code_gen_buffer(size_t tb_size)
>    translate-all.c:    tcg_ctx.code_gen_buffer_size = size_code_gen_buffer(tb_size);
>
> Signed-off-by: Emilio G. Cota<cota@braap.org>
> ---
>   translate-all.c | 1 -
>   1 file changed, 1 deletion(-)

Applied to tcg-next.  Thanks.


r~
diff mbox

Patch

diff --git a/translate-all.c b/translate-all.c
index 769bffc..e700399 100644
--- a/translate-all.c
+++ b/translate-all.c
@@ -505,7 +505,6 @@  static inline size_t size_code_gen_buffer(size_t tb_size)
     if (tb_size > MAX_CODE_GEN_BUFFER_SIZE) {
         tb_size = MAX_CODE_GEN_BUFFER_SIZE;
     }
-    tcg_ctx.code_gen_buffer_size = tb_size;
     return tb_size;
 }