diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2011-11-25 19:25:50 +0100 |
---|---|---|
committer | Andrzej Zaborowski <balrog@zabor.org> | 2011-12-05 21:38:47 +0100 |
commit | f4fc247b0df2dfccae80618ccf6741a9b9e50e49 (patch) | |
tree | 750b4c3041f886bae7deac1e2b532b89b1fcadb6 /target-arm | |
parent | 02afbf64753fcf95f3b0b36cf4066ba194ec550d (diff) |
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')
-rw-r--r-- | target-arm/helper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target-arm/helper.c b/target-arm/helper.c index 97af4d0bba..3fe5822f61 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(); } |