diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2025-01-07 20:12:08 -0800 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2025-04-28 13:40:16 -0700 |
| commit | 967e7ccd9c5c6a5a2cc5d7a101cd24acced22749 (patch) | |
| tree | 42da6ad74cc887927805b963baefac8e4dba7288 /tcg/tcg-has.h | |
| parent | 9a6bc1840ec105902bda1a59c42e9e0c56a9ed05 (diff) | |
| download | focaccia-qemu-967e7ccd9c5c6a5a2cc5d7a101cd24acced22749.tar.gz focaccia-qemu-967e7ccd9c5c6a5a2cc5d7a101cd24acced22749.zip | |
tcg: Convert remu to TCGOutOpBinary
For TCI, we're losing type information in the interpreter. Introduce a tci-specific opcode to handle the difference. Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'tcg/tcg-has.h')
| -rw-r--r-- | tcg/tcg-has.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/tcg/tcg-has.h b/tcg/tcg-has.h index bae9918024..0bb829be36 100644 --- a/tcg/tcg-has.h +++ b/tcg/tcg-has.h @@ -12,8 +12,6 @@ #if TCG_TARGET_REG_BITS == 32 /* Turn some undef macros into false macros. */ #define TCG_TARGET_HAS_extr_i64_i32 0 -#define TCG_TARGET_HAS_div_i64 0 -#define TCG_TARGET_HAS_rem_i64 0 #define TCG_TARGET_HAS_rot_i64 0 #define TCG_TARGET_HAS_bswap16_i64 0 #define TCG_TARGET_HAS_bswap32_i64 0 @@ -32,13 +30,6 @@ #define TCG_TARGET_HAS_sub2_i32 1 #endif -#ifndef TCG_TARGET_HAS_rem_i32 -#define TCG_TARGET_HAS_rem_i32 0 -#endif -#ifndef TCG_TARGET_HAS_rem_i64 -#define TCG_TARGET_HAS_rem_i64 0 -#endif - #if !defined(TCG_TARGET_HAS_v64) \ && !defined(TCG_TARGET_HAS_v128) \ && !defined(TCG_TARGET_HAS_v256) |