summaryrefslogtreecommitdiff
path: root/tcg/tcg.h
diff options
context:
space:
mode:
authorAurelien Jarno <aurelien@aurel32.net>2011-05-17 18:25:45 +0200
committerAurelien Jarno <aurelien@aurel32.net>2011-05-23 22:38:11 +0200
commit866cb6cb21b91809f3f5c49c7c4268573552a108 (patch)
tree59f3e5a3f5990c744da44d8df233f2e9f885861e /tcg/tcg.h
parent6eba5c82cfeb28bd5056ad0e8923d98519181939 (diff)
downloadqemu-866cb6cb21b91809f3f5c49c7c4268573552a108.tar.gz
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 <aurelien@aurel32.net>
Diffstat (limited to 'tcg/tcg.h')
-rw-r--r--tcg/tcg.h4
1 files changed, 2 insertions, 2 deletions
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 */