diff options
author | Alex Bennée <alex.bennee@linaro.org> | 2019-05-17 12:36:10 +0100 |
---|---|---|
committer | Alex Bennée <alex.bennee@linaro.org> | 2019-10-28 15:12:38 +0000 |
commit | dc069b22a1c2fe988ad58fa9de7d768bf67cc9a0 (patch) | |
tree | 11070f8c397571cc193bb44a1bb768552a660022 /include/exec | |
parent | e4fbd37fc03c897e1824ae54bb044d27f8d1a083 (diff) | |
download | qemu-dc069b22a1c2fe988ad58fa9de7d768bf67cc9a0.zip |
include/exec: wrap cpu_ldst.h in CONFIG_TCG
This gets around a build problem with --disable-tcg.
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'include/exec')
-rw-r--r-- | include/exec/exec-all.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/exec/exec-all.h b/include/exec/exec-all.h index eadcf29d0c..d85e610e85 100644 --- a/include/exec/exec-all.h +++ b/include/exec/exec-all.h @@ -22,7 +22,9 @@ #include "cpu.h" #include "exec/tb-context.h" +#ifdef CONFIG_TCG #include "exec/cpu_ldst.h" +#endif #include "sysemu/cpus.h" /* allow to see translation results - the slowdown should be negligible, so we leave it */ |