Message ID | 20230605222420.14776-2-philmd@linaro.org |
---|---|
State | Superseded |
Headers | show |
Series | bulk: Replace CONFIG_SOFTMMU by !CONFIG_USER_ONLY/CONFIG_SYSTEM_ONLY | expand |
On 6/5/23 15:24, Philippe Mathieu-Daudé wrote: > We don't build any user emulation target for Tricore, > only the system emulation. No need to check for it as > it is always defined. > > Signed-off-by: Philippe Mathieu-Daudé<philmd@linaro.org> > --- > target/tricore/helper.c | 2 -- > 1 file changed, 2 deletions(-) Reviewed-by: Richard Henderson <richard.henderson@linaro.org> r~
diff --git a/target/tricore/helper.c b/target/tricore/helper.c index 114685cce4..cd34b34133 100644 --- a/target/tricore/helper.c +++ b/target/tricore/helper.c @@ -30,7 +30,6 @@ enum { TLBRET_MATCH = 0 }; -#if defined(CONFIG_SOFTMMU) static int get_physical_address(CPUTriCoreState *env, hwaddr *physical, int *prot, target_ulong address, MMUAccessType access_type, int mmu_idx) @@ -56,7 +55,6 @@ hwaddr tricore_cpu_get_phys_page_debug(CPUState *cs, vaddr addr) } return phys_addr; } -#endif /* TODO: Add exeption support*/ static void raise_mmu_exception(CPUTriCoreState *env, target_ulong address,
We don't build any user emulation target for Tricore, only the system emulation. No need to check for it as it is always defined. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> --- target/tricore/helper.c | 2 -- 1 file changed, 2 deletions(-)