summaryrefslogtreecommitdiffstats
path: root/target-arm/helper.c
diff options
context:
space:
mode:
authorPeter Maydell <peter.maydell@linaro.org>2011-11-25 19:25:50 +0100
committerAndrzej Zaborowski <balrog@zabor.org>2011-12-05 21:38:47 +0100
commitf4fc247b0df2dfccae80618ccf6741a9b9e50e49 (patch)
tree750b4c3041f886bae7deac1e2b532b89b1fcadb6 /target-arm/helper.c
parent02afbf64753fcf95f3b0b36cf4066ba194ec550d (diff)
downloadhqemu-f4fc247b0df2dfccae80618ccf6741a9b9e50e49.zip
hqemu-f4fc247b0df2dfccae80618ccf6741a9b9e50e49.tar.gz
target-arm/helper.c: Don't allocate TCG resources unless TCG enabled
Don't call arm_translate_init() (which allocates TCG resources) unless TCG is enabled. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Andrzej Zaborowski <andrew.zaborowski@intel.com>
Diffstat (limited to 'target-arm/helper.c')
-rw-r--r--target-arm/helper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/target-arm/helper.c b/target-arm/helper.c
index 97af4d0..3fe5822 100644
--- a/target-arm/helper.c
+++ b/target-arm/helper.c
@@ -390,7 +390,7 @@ CPUARMState *cpu_arm_init(const char *cpu_model)
return NULL;
env = g_malloc0(sizeof(CPUARMState));
cpu_exec_init(env);
- if (!inited) {
+ if (tcg_enabled() && !inited) {
inited = 1;
arm_translate_init();
}
OpenPOWER on IntegriCloud