diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2022-02-25 18:49:29 -1000 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2022-03-03 09:36:19 -1000 |
commit | 1fb877a467014ec5a31cac63b067a38c13c684f0 (patch) | |
tree | bf66edff1efb3bb737cdbf57a0eaa2af83527a44 /target/nios2/op_helper.c | |
parent | 36eae3a732a1f2aa81391e871ac0e9bb3233e7d7 (diff) |
target/nios2: Remove mmu_read_debug
This functionality can be had via plugins, if desired.
In the meantime, it is unused code.
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'target/nios2/op_helper.c')
-rw-r--r-- | target/nios2/op_helper.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/target/nios2/op_helper.c b/target/nios2/op_helper.c index a59003855a..61fc4dc903 100644 --- a/target/nios2/op_helper.c +++ b/target/nios2/op_helper.c @@ -26,11 +26,6 @@ #include "qemu/main-loop.h" #if !defined(CONFIG_USER_ONLY) -void helper_mmu_read_debug(CPUNios2State *env, uint32_t rn) -{ - mmu_read_debug(env, rn); -} - void helper_mmu_write(CPUNios2State *env, uint32_t rn, uint32_t v) { mmu_write(env, rn, v); |