diff options
author | Richard Henderson <rth@twiddle.net> | 2016-11-18 08:35:03 +0100 |
---|---|---|
committer | Richard Henderson <rth@twiddle.net> | 2017-01-10 08:06:11 -0800 |
commit | 82790a870992bd87d5fd9e607f40859dcf4f82ac (patch) | |
tree | 8f62fe7b981b6cbeaa68d157f17f84690271dd0d /tcg/tcg.h | |
parent | 333b21b809fc80ce67c8f6a7d1c7cc66437d9791 (diff) | |
download | qemu-82790a870992bd87d5fd9e607f40859dcf4f82ac.zip |
tcg: Add markup for output requires new register
This is the same concept as, and same markup as, the
early clobber markup in gcc.
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Signed-off-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'tcg/tcg.h')
-rw-r--r-- | tcg/tcg.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -851,6 +851,7 @@ void tcg_dump_op_count(FILE *f, fprintf_function cpu_fprintf); #define TCG_CT_ALIAS 0x80 #define TCG_CT_IALIAS 0x40 +#define TCG_CT_NEWREG 0x20 /* output requires a new register */ #define TCG_CT_REG 0x01 #define TCG_CT_CONST 0x02 /* any constant of register size */ |