aboutsummaryrefslogtreecommitdiff
path: root/target-arm/op.c
diff options
context:
space:
mode:
Diffstat (limited to 'target-arm/op.c')
-rw-r--r--target-arm/op.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/target-arm/op.c b/target-arm/op.c
index acac2394a6..f06b06b908 100644
--- a/target-arm/op.c
+++ b/target-arm/op.c
@@ -1181,3 +1181,13 @@ void OPPROTO op_movl_user_T0(void)
}
FORCE_RET();
}
+
+void OPPROTO op_movl_T2_T0(void)
+{
+ T2 = T0;
+}
+
+void OPPROTO op_movl_T0_T2(void)
+{
+ T0 = T2;
+}