summaryrefslogtreecommitdiffstats
path: root/target-tilegx/translate.c
diff options
context:
space:
mode:
Diffstat (limited to 'target-tilegx/translate.c')
-rw-r--r--target-tilegx/translate.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/target-tilegx/translate.c b/target-tilegx/translate.c
index a5bb8d4..7073aba 100644
--- a/target-tilegx/translate.c
+++ b/target-tilegx/translate.c
@@ -2442,9 +2442,9 @@ void tilegx_tcg_init(void)
int i;
cpu_env = tcg_global_reg_new_ptr(TCG_AREG0, "env");
- cpu_pc = tcg_global_mem_new_i64(TCG_AREG0, offsetof(CPUTLGState, pc), "pc");
+ cpu_pc = tcg_global_mem_new_i64(cpu_env, offsetof(CPUTLGState, pc), "pc");
for (i = 0; i < TILEGX_R_COUNT; i++) {
- cpu_regs[i] = tcg_global_mem_new_i64(TCG_AREG0,
+ cpu_regs[i] = tcg_global_mem_new_i64(cpu_env,
offsetof(CPUTLGState, regs[i]),
reg_names[i]);
}
OpenPOWER on IntegriCloud