summaryrefslogtreecommitdiff
path: root/target-arm
diff options
context:
space:
mode:
Diffstat (limited to 'target-arm')
-rw-r--r--target-arm/exec.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/target-arm/exec.h b/target-arm/exec.h
index 70afdc5d95..14e2072e6c 100644
--- a/target-arm/exec.h
+++ b/target-arm/exec.h
@@ -38,3 +38,11 @@ static inline int compute_cpsr(void)
return env->cpsr | (env->NZF & 0x80000000) | (ZF << 30) |
(env->CF << 29) | ((env->VF & 0x80000000) >> 3);
}
+
+static inline void env_to_regs(void)
+{
+}
+
+static inline void regs_to_env(void)
+{
+}