From 866cb6cb21b91809f3f5c49c7c4268573552a108 Mon Sep 17 00:00:00 2001 From: Aurelien Jarno Date: Tue, 17 May 2011 18:25:45 +0200 Subject: tcg: replace op_dead_iargs by op_dead_args Allow all args to be dead by replacing the input specific op_dead_iargs variable by op_dead_args. Note this is a purely mechanical change. Signed-off-by: Aurelien Jarno --- tcg/tcg.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tcg/tcg.h') diff --git a/tcg/tcg.h b/tcg/tcg.h index cecef63027..2b985ac024 100644 --- a/tcg/tcg.h +++ b/tcg/tcg.h @@ -286,8 +286,8 @@ struct TCGContext { uint16_t *tb_jmp_offset; /* != NULL if USE_DIRECT_JUMP */ /* liveness analysis */ - uint16_t *op_dead_iargs; /* for each operation, each bit tells if the - corresponding input argument is dead */ + uint16_t *op_dead_args; /* for each operation, each bit tells if the + corresponding argument is dead */ /* tells in which temporary a given register is. It does not take into account fixed registers */ -- cgit v1.2.3