17 lines
313 B
C++
17 lines
313 B
C++
#include "stdafx.h"
|
|
#include "SectionInfo.h"
|
|
#include "JumpInfo.h"
|
|
|
|
CJumpInfo::CJumpInfo()
|
|
{
|
|
TargetPC = (uint32_t)-1;
|
|
JumpPC = (uint32_t)-1;
|
|
BranchLabel = "";
|
|
LinkLocation = nullptr;
|
|
LinkLocation2 = nullptr;
|
|
FallThrough = false;
|
|
PermLoop = false;
|
|
DoneDelaySlot = false;
|
|
ExitReason = CExitInfo::Normal;
|
|
}
|