summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--target-mips/cpu.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/target-mips/cpu.h b/target-mips/cpu.h
index b415dc43be..6ebb82bccb 100644
--- a/target-mips/cpu.h
+++ b/target-mips/cpu.h
@@ -597,4 +597,9 @@ static inline void cpu_get_tb_cpu_state(CPUState *env, target_ulong *pc,
     *flags = env->hflags & (MIPS_HFLAG_TMASK | MIPS_HFLAG_BMASK);
 }
 
+static inline void cpu_set_tls(CPUState *env, target_ulong newtls)
+{
+    env->tls_value = newtls;
+}
+
 #endif /* !defined (__MIPS_CPU_H__) */