diff options
| author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-12-12 18:08:43 +0100 |
|---|---|---|
| committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-12-20 17:44:57 +0100 |
| commit | 187b7ca96a3e682226ba43a3b4b3d4c8954834b5 (patch) | |
| tree | 08fd152198a2cc0828a11b77673c2256d052bc2c /target/sparc/ldst_helper.c | |
| parent | 62ef949bbc06f23d9f4e773f8a50c7bb191531d2 (diff) | |
| download | focaccia-qemu-187b7ca96a3e682226ba43a3b4b3d4c8954834b5.tar.gz focaccia-qemu-187b7ca96a3e682226ba43a3b4b3d4c8954834b5.zip | |
accel/tcg: Move user-related declarations out of 'exec/cpu-all.h' (3/4)
Move declarations related to page protection under user emulation from "exec/cpu-all.h" to "user/page-protection.h". Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20241212185341.2857-14-philmd@linaro.org>
Diffstat (limited to 'target/sparc/ldst_helper.c')
| -rw-r--r-- | target/sparc/ldst_helper.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/target/sparc/ldst_helper.c b/target/sparc/ldst_helper.c index d92c9f1593..4c54e45655 100644 --- a/target/sparc/ldst_helper.c +++ b/target/sparc/ldst_helper.c @@ -26,6 +26,9 @@ #include "exec/exec-all.h" #include "exec/page-protection.h" #include "exec/cpu_ldst.h" +#ifdef CONFIG_USER_ONLY +#include "user/page-protection.h" +#endif #include "asi.h" //#define DEBUG_MMU |