mirror of https://gitee.com/openkylin/qemu.git
ppc: fix fpr TCG registers creation
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5157 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
a5e26afa61
commit
ec1ac72d9c
|
@ -141,11 +141,13 @@ void ppc_translate_init(void)
|
|||
sprintf(p, "fp%d", i);
|
||||
cpu_fpr[i] = tcg_global_mem_new(TCG_TYPE_I64, TCG_AREG0,
|
||||
offsetof(CPUState, fpr[i]), p);
|
||||
p += (i < 10) ? 4 : 5;
|
||||
|
||||
sprintf(p, "avr%dH", i);
|
||||
cpu_avrh[i] = tcg_global_mem_new(TCG_TYPE_I64, TCG_AREG0,
|
||||
offsetof(CPUState, avr[i].u64[0]), p);
|
||||
p += (i < 10) ? 6 : 7;
|
||||
|
||||
sprintf(p, "avr%dL", i);
|
||||
cpu_avrl[i] = tcg_global_mem_new(TCG_TYPE_I64, TCG_AREG0,
|
||||
offsetof(CPUState, avr[i].u64[1]), p);
|
||||
|
|
Loading…
Reference in New Issue