diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2025-04-30 18:46:41 -0700 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2025-05-05 09:24:10 -0700 |
| commit | 2c0b261fcd259f0e027633c744d279d255b4ff49 (patch) | |
| tree | e7065159fa875981db022966da2c89b4ffc0429b /target/arm/cpu-param.h | |
| parent | 7804c84a56f9265813eb87db0bdae063279af030 (diff) | |
| download | focaccia-qemu-2c0b261fcd259f0e027633c744d279d255b4ff49.tar.gz focaccia-qemu-2c0b261fcd259f0e027633c744d279d255b4ff49.zip | |
accel/tcg: Move TARGET_TAGGED_ADDRESSES to TCGCPUOps.untagged_addr
Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'target/arm/cpu-param.h')
| -rw-r--r-- | target/arm/cpu-param.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/target/arm/cpu-param.h b/target/arm/cpu-param.h index 5c5bc8a009..8b46c7c570 100644 --- a/target/arm/cpu-param.h +++ b/target/arm/cpu-param.h @@ -17,14 +17,9 @@ #endif #ifdef CONFIG_USER_ONLY -# ifdef TARGET_AARCH64 -# define TARGET_TAGGED_ADDRESSES -# ifdef __FreeBSD__ -# define TARGET_PAGE_BITS 12 -# else +# if defined(TARGET_AARCH64) && defined(CONFIG_LINUX) /* Allow user-only to vary page size from 4k */ # define TARGET_PAGE_BITS_VARY -# endif # else # define TARGET_PAGE_BITS 12 # endif |