diff options
author | Edgar E. Iglesias <edgar.iglesias@gmail.com> | 2012-04-26 14:17:41 +0200 |
---|---|---|
committer | Edgar E. Iglesias <edgar.iglesias@gmail.com> | 2012-10-19 13:24:12 +0200 |
commit | a5b3bdcba8a105439ad3a44121526306c449e100 (patch) | |
tree | e39553b9c08439daf449c4cea769ffe75388d665 /target-microblaze | |
parent | b6348f29d033d5a8a26f633d2ee94362595f32a4 (diff) |
microblaze: Support setting of TLS ptr
Signed-off-by: Edgar E. Iglesias <edgar.iglesias@gmail.com>
Diffstat (limited to 'target-microblaze')
-rw-r--r-- | target-microblaze/cpu.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target-microblaze/cpu.h b/target-microblaze/cpu.h index 4968c244e8..88430b5057 100644 --- a/target-microblaze/cpu.h +++ b/target-microblaze/cpu.h @@ -345,6 +345,7 @@ static inline void cpu_clone_regs(CPUMBState *env, target_ulong newsp) static inline void cpu_set_tls(CPUMBState *env, target_ulong newtls) { + env->regs[21] = newtls; } static inline int cpu_interrupts_enabled(CPUMBState *env) |