diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2023-08-04 23:24:04 +0000 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2023-08-24 11:22:42 -0700 |
commit | 3635502dd00bcfee3a6ab790d950c2fc4ace607b (patch) | |
tree | d3a3f2e187d586a23b33af696d3c24dd11a8a114 /include/tcg/tcg.h | |
parent | 13d885b0ad4ada4d216b0341de5ae4a9ce3f5abb (diff) | |
download | qemu-3635502dd00bcfee3a6ab790d950c2fc4ace607b.zip qemu-3635502dd00bcfee3a6ab790d950c2fc4ace607b.tar.gz qemu-3635502dd00bcfee3a6ab790d950c2fc4ace607b.tar.bz2 |
tcg: Introduce negsetcond opcodes
Introduce a new opcode for negative setcond.
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'include/tcg/tcg.h')
-rw-r--r-- | include/tcg/tcg.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/tcg/tcg.h b/include/tcg/tcg.h index ea7e55e..61d7c81 100644 --- a/include/tcg/tcg.h +++ b/include/tcg/tcg.h @@ -97,6 +97,7 @@ typedef uint64_t TCGRegSet; #define TCG_TARGET_HAS_sextract_i64 0 #define TCG_TARGET_HAS_extract2_i64 0 #define TCG_TARGET_HAS_movcond_i64 0 +#define TCG_TARGET_HAS_negsetcond_i64 0 #define TCG_TARGET_HAS_add2_i64 0 #define TCG_TARGET_HAS_sub2_i64 0 #define TCG_TARGET_HAS_mulu2_i64 0 |