Remove a redundant assignment in Init() within PowerPC.cpp. We already assign zero to ppcState.dtlb_last.
This commit is contained in:
parent
b8a947ce0a
commit
81964517d6
|
@ -121,7 +121,6 @@ void Init(int cpu_core)
|
||||||
memset(ppcState.sr, 0, sizeof(ppcState.sr));
|
memset(ppcState.sr, 0, sizeof(ppcState.sr));
|
||||||
ppcState.DebugCount = 0;
|
ppcState.DebugCount = 0;
|
||||||
ppcState.dtlb_last = 0;
|
ppcState.dtlb_last = 0;
|
||||||
ppcState.dtlb_last = 0;
|
|
||||||
memset(ppcState.dtlb_va, 0, sizeof(ppcState.dtlb_va));
|
memset(ppcState.dtlb_va, 0, sizeof(ppcState.dtlb_va));
|
||||||
memset(ppcState.dtlb_pa, 0, sizeof(ppcState.dtlb_pa));
|
memset(ppcState.dtlb_pa, 0, sizeof(ppcState.dtlb_pa));
|
||||||
ppcState.itlb_last = 0;
|
ppcState.itlb_last = 0;
|
||||||
|
|
Loading…
Reference in New Issue