[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 16/20] target/mips: fpu: Remove now unused FLOAT_RINT macro
From: |
Aleksandar Markovic |
Subject: |
[PULL 16/20] target/mips: fpu: Remove now unused FLOAT_RINT macro |
Date: |
Tue, 9 Jun 2020 18:28:34 +0200 |
After demacroing RINT.<D|S>, this macro is not needed anymore.
Reviewed-by: Aleksandar Rikalo <aleksandar.rikalo@syrmia.com>
Signed-off-by: Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
Message-Id: <20200518200920.17344-15-aleksandar.qemu.devel@gmail.com>
---
target/mips/fpu_helper.c | 13 -------------
1 file changed, 13 deletions(-)
diff --git a/target/mips/fpu_helper.c b/target/mips/fpu_helper.c
index dae1331..56ba491 100644
--- a/target/mips/fpu_helper.c
+++ b/target/mips/fpu_helper.c
@@ -1102,19 +1102,6 @@ uint64_t helper_float_rsqrt1_ps(CPUMIPSState *env,
uint64_t fdt0)
return ((uint64_t)fsth2 << 32) | fst2;
}
-#define FLOAT_RINT(name, bits) \
-uint ## bits ## _t helper_float_ ## name(CPUMIPSState *env, \
- uint ## bits ## _t fs) \
-{ \
- uint ## bits ## _t fdret; \
- \
- fdret = float ## bits ## _round_to_int(fs, &env->active_fpu.fp_status); \
- update_fcr31(env, GETPC()); \
- return fdret; \
-}
-
-#undef FLOAT_RINT
-
uint64_t helper_float_rint_d(CPUMIPSState *env, uint64_t fs)
{
uint64_t fdret;
--
2.7.4
- [PULL 09/20] target/mips: fpu: Demacro MSUB.<D|S|PS>, (continued)
- [PULL 09/20] target/mips: fpu: Demacro MSUB.<D|S|PS>, Aleksandar Markovic, 2020/06/09
- [PULL 10/20] target/mips: fpu: Demacro NMADD.<D|S|PS>, Aleksandar Markovic, 2020/06/09
- [PULL 11/20] target/mips: fpu: Demacro NMSUB.<D|S|PS>, Aleksandar Markovic, 2020/06/09
- [PULL 07/20] target/mips: fpu: Remove now unused macro FLOAT_BINOP, Aleksandar Markovic, 2020/06/09
- [PULL 05/20] target/mips: fpu: Demacro MUL.<D|S|PS>, Aleksandar Markovic, 2020/06/09
- [PULL 12/20] target/mips: fpu: Remove now unused UNFUSED_FMA and FLOAT_FMA macros, Aleksandar Markovic, 2020/06/09
- [PULL 13/20] target/mips: fpu: Demacro CLASS.<D|S>, Aleksandar Markovic, 2020/06/09
- [PULL 18/20] target/mips: fpu: Refactor conversion from ieee to mips exception flags, Aleksandar Markovic, 2020/06/09
- [PULL 17/20] target/mips: fpu: Name better paired-single variables, Aleksandar Markovic, 2020/06/09
- [PULL 15/20] target/mips: fpu: Demacro RINT.<D|S>, Aleksandar Markovic, 2020/06/09
- [PULL 16/20] target/mips: fpu: Remove now unused FLOAT_RINT macro,
Aleksandar Markovic <=
- [PULL 14/20] target/mips: fpu: Remove now unused FLOAT_CLASS macro, Aleksandar Markovic, 2020/06/09
- [PULL 19/20] target/mips: Add Loongson-3 CPU definition, Aleksandar Markovic, 2020/06/09
- [PULL 20/20] target/mips: Enable hardware page table walker and CMGCR features for P5600, Aleksandar Markovic, 2020/06/09
- Re: [PULL 00/20] MIPS queue for June 9th, 2020, Peter Maydell, 2020/06/11