Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Remove a redundant assignment in Init() within PowerPC.cpp. We alread…
…y assign zero to ppcState.dtlb_last.
  • Loading branch information
lioncash committed Oct 18, 2013
1 parent b8a947c commit 8196451
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion Source/Core/Core/Src/PowerPC/PowerPC.cpp
Expand Up @@ -121,7 +121,6 @@ void Init(int cpu_core)
memset(ppcState.sr, 0, sizeof(ppcState.sr));
ppcState.DebugCount = 0;
ppcState.dtlb_last = 0;
ppcState.dtlb_last = 0;
memset(ppcState.dtlb_va, 0, sizeof(ppcState.dtlb_va));
memset(ppcState.dtlb_pa, 0, sizeof(ppcState.dtlb_pa));
ppcState.itlb_last = 0;
Expand Down

0 comments on commit 8196451

Please sign in to comment.