summaryrefslogtreecommitdiff
path: root/target-arm/op_helper.c
diff options
context:
space:
mode:
authorPeter Maydell <peter.maydell@linaro.org>2012-10-19 04:23:05 +0000
committerPeter Maydell <peter.maydell@linaro.org>2012-10-24 13:33:29 +0100
commit8b279a60dc3ca53923701dfec6e54bea9d13cfb7 (patch)
tree3bf2c4937a1f81f45082fdcf0e2a7e28aadfea74 /target-arm/op_helper.c
parent36c91fd115a5920a35d4cb0e7a1903281469e0db (diff)
downloadqemu-8b279a60dc3ca53923701dfec6e54bea9d13cfb7.tar.gz
target-arm: Remove out of date FIXME regarding saturating arithmetic
Remove an out of date FIXME regarding the saturating arithmetic helpers: we now do pass a pointer to CPUARMState to these helpers, and since the AREG0 changes went in there is no difference between helper.c and op_helper.c and therefore no point in moving the functions. Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'target-arm/op_helper.c')
-rw-r--r--target-arm/op_helper.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/target-arm/op_helper.c b/target-arm/op_helper.c
index aef592ab8d..6e3ab90e3b 100644
--- a/target-arm/op_helper.c
+++ b/target-arm/op_helper.c
@@ -93,8 +93,6 @@ void tlb_fill(CPUARMState *env, target_ulong addr, int is_write, int mmu_idx,
}
#endif
-/* FIXME: Pass an explicit pointer to QF to CPUARMState, and move saturating
- instructions into helper.c */
uint32_t HELPER(add_setq)(CPUARMState *env, uint32_t a, uint32_t b)
{
uint32_t res = a + b;