Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.

Commit

Permalink
Revert the order of pXXX fields
Browse files Browse the repository at this point in the history
  • Loading branch information
parjong committed Jan 31, 2017
1 parent c56cc86 commit 1310d8c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/inc/regdisp.h
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,13 @@ struct REGDISPLAY : public REGDISPLAY_BASE {
// used to preserve context saved in the frame that
// could be otherwise wiped by the unwinding

DWORD * pEax;
DWORD * pEcx;
DWORD * pEdi;
DWORD * pEsi;
DWORD * pEbx;
DWORD * pEdx;
DWORD * pEcx;
DWORD * pEax;

DWORD * pEbx;
DWORD * pEsi;
DWORD * pEdi;
DWORD * pEbp;
#endif // !WIN64EXCEPTIONS

Expand Down

0 comments on commit 1310d8c

Please sign in to comment.