diff options
author | Aurelien Jarno <aurelien@aurel32.net> | 2011-05-17 18:25:45 +0200 |
---|---|---|
committer | Aurelien Jarno <aurelien@aurel32.net> | 2011-05-23 22:38:11 +0200 |
commit | 866cb6cb21b91809f3f5c49c7c4268573552a108 (patch) | |
tree | 59f3e5a3f5990c744da44d8df233f2e9f885861e /tcg/tcg.h | |
parent | 6eba5c82cfeb28bd5056ad0e8923d98519181939 (diff) | |
download | qemu-866cb6cb21b91809f3f5c49c7c4268573552a108.tar.gz qemu-866cb6cb21b91809f3f5c49c7c4268573552a108.tar.bz2 qemu-866cb6cb21b91809f3f5c49c7c4268573552a108.zip |
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.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 */ |