diff options
author | balrog <balrog@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-04-13 00:57:49 +0000 |
---|---|---|
committer | balrog <balrog@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-04-13 00:57:49 +0000 |
commit | 6c95676b16dcabd69ad9a57c0a9ec4878d3d0e3d (patch) | |
tree | 048ea12772b8028343aa95ae9297e43746b06fdc /target-arm/helper.c | |
parent | 6f9bc132639d8d3349581441daa4f799c28d48fb (diff) |
Store the right TCG temp (typo).
Stops ARMv6 target from segfaulting early.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4201 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-arm/helper.c')
-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 4ff30c1a8e..b62523b197 100644 --- a/target-arm/helper.c +++ b/target-arm/helper.c @@ -675,7 +675,7 @@ void do_interrupt_v7m(CPUARMState *env) env->regs[13] += 4; xpsr |= 0x200; } - /* Switch to the hander mode. */ + /* Switch to the handler mode. */ v7m_push(env, xpsr); v7m_push(env, env->regs[15]); v7m_push(env, env->regs[14]); |