diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2023-08-05 14:32:57 +0000 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2023-08-24 11:22:42 -0700 |
| commit | fe06b8973385c9421b2988239cadb9d091cdc628 (patch) | |
| tree | bea69c350888034f0cdb1300bd164408711e0438 /tcg/arm/tcg-target.h | |
| parent | f58a7dea0f0652779e1525f072ef45bf99dbfd72 (diff) | |
| download | focaccia-qemu-fe06b8973385c9421b2988239cadb9d091cdc628.tar.gz focaccia-qemu-fe06b8973385c9421b2988239cadb9d091cdc628.zip | |
tcg/arm: Implement negsetcond_i32
Trivial, as we simply need to load a different constant in the conditional move. Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'tcg/arm/tcg-target.h')
| -rw-r--r-- | tcg/arm/tcg-target.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tcg/arm/tcg-target.h b/tcg/arm/tcg-target.h index ad66f11574..311a985209 100644 --- a/tcg/arm/tcg-target.h +++ b/tcg/arm/tcg-target.h @@ -116,7 +116,7 @@ extern bool use_neon_instructions; #define TCG_TARGET_HAS_sextract_i32 use_armv7_instructions #define TCG_TARGET_HAS_extract2_i32 1 #define TCG_TARGET_HAS_movcond_i32 1 -#define TCG_TARGET_HAS_negsetcond_i32 0 +#define TCG_TARGET_HAS_negsetcond_i32 1 #define TCG_TARGET_HAS_mulu2_i32 1 #define TCG_TARGET_HAS_muls2_i32 1 #define TCG_TARGET_HAS_muluh_i32 0 |