diff options
author | David 'Digit' Turner <digit@android.com> | 2011-05-11 00:44:05 +0200 |
---|---|---|
committer | David 'Digit' Turner <digit@android.com> | 2011-06-01 17:08:19 +0200 |
commit | f645f7d6fd841e39524e5df8c1a7fd8347f92ac1 (patch) | |
tree | 53964a1f9e70c88630277888904f41c35b217ffd /target-arm | |
parent | f0753acaab4309557754ec19d3e839fe6b5e356c (diff) | |
download | external_qemu-f645f7d6fd841e39524e5df8c1a7fd8347f92ac1.zip external_qemu-f645f7d6fd841e39524e5df8c1a7fd8347f92ac1.tar.gz external_qemu-f645f7d6fd841e39524e5df8c1a7fd8347f92ac1.tar.bz2 |
cpu_restore_state: remove un-necessary argument.
Change-Id: I01cef0743cc9db9d21c2b7feb9f2a877ac4d2b35
Diffstat (limited to 'target-arm')
-rw-r--r-- | target-arm/op_helper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target-arm/op_helper.c b/target-arm/op_helper.c index 6d8db29..bfb6be5 100644 --- a/target-arm/op_helper.c +++ b/target-arm/op_helper.c @@ -126,7 +126,7 @@ void tlb_fill (target_ulong addr, int is_write, int mmu_idx, void *retaddr) if (tb) { /* the PC is inside the translated code. It means that we have a virtual CPU fault */ - cpu_restore_state(tb, env, pc, NULL); + cpu_restore_state(tb, env, pc); } } raise_exception(env->exception_index); |