summaryrefslogtreecommitdiffstats
path: root/target-tricore/op_helper.c
diff options
context:
space:
mode:
authorBastian Koppelmann2015-05-05 19:39:18 +0200
committerBastian Koppelmann2015-05-11 14:25:41 +0200
commitbc72f8aaf23fa11833e0e04c10b5c0e1036c2609 (patch)
treeae89ada5204329b6bd26e1b7175d9f906c364ad0 /target-tricore/op_helper.c
parenttarget-tricore: fix BO_OFF10_SEXT calculating the wrong offset (diff)
downloadqemu-bc72f8aaf23fa11833e0e04c10b5c0e1036c2609.tar.gz
qemu-bc72f8aaf23fa11833e0e04c10b5c0e1036c2609.tar.xz
qemu-bc72f8aaf23fa11833e0e04c10b5c0e1036c2609.zip
target-tricore: fix rslcx restoring the upper context instead of the lower
Signed-off-by: Bastian Koppelmann <kbastian@mail.uni-paderborn.de>
Diffstat (limited to 'target-tricore/op_helper.c')
-rw-r--r--target-tricore/op_helper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/target-tricore/op_helper.c b/target-tricore/op_helper.c
index 9907e07e22..1dc25c2349 100644
--- a/target-tricore/op_helper.c
+++ b/target-tricore/op_helper.c
@@ -2581,7 +2581,7 @@ void helper_rslcx(CPUTriCoreState *env)
((env->PCXI & MASK_PCXI_PCXO) << 6);
/* {new_PCXI, A[11], A[10], A[11], D[8], D[9], D[10], D[11], A[12],
A[13], A[14], A[15], D[12], D[13], D[14], D[15]} = M(EA, 16 * word); */
- restore_context_upper(env, ea, &new_PCXI, &env->gpr_a[11]);
+ restore_context_lower(env, ea, &env->gpr_a[11], &new_PCXI);
/* M(EA, word) = FCX; */
cpu_stl_data(env, ea, env->FCX);
/* M(EA, word) = FCX; */