Revert "Fix stack misalignment issues."

This reverts commit d334a9bc23.

This breaks single core.
This commit is contained in:
Rachel Bryk
2013-09-22 14:29:35 -04:00
parent f3469c16a5
commit 9a6f28fce4
5 changed files with 182 additions and 134 deletions

View File

@ -217,7 +217,7 @@ void VertexLoader::CompileVertexTranslator()
PanicAlert("Trying to recompile a vertex translator");
m_compiledCode = GetCodePtr();
ABI_PushAllCalleeSavedRegsAndAdjustStack();
ABI_EmitPrologue(4);
// Start loop here
const u8 *loop_start = GetCodePtr();
@ -499,8 +499,7 @@ void VertexLoader::CompileVertexTranslator()
#endif
J_CC(CC_NZ, loop_start, true);
ABI_PopAllCalleeSavedRegsAndAdjustStack();
RET();
ABI_EmitEpilogue(4);
#endif
m_NativeFmt->Initialize(vtx_decl);
}