diff options
Diffstat (limited to 'lowlevelil.cpp')
| -rw-r--r-- | lowlevelil.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lowlevelil.cpp b/lowlevelil.cpp index dd3989f1..5fe2ed91 100644 --- a/lowlevelil.cpp +++ b/lowlevelil.cpp @@ -25,6 +25,12 @@ using namespace BinaryNinja; using namespace std; +ILSourceLocation::ILSourceLocation(const struct LowLevelILInstruction& instr): + address(instr.address), sourceOperand(instr.sourceOperand), valid(true), + ilBased(true), ilDirect(true), ilExprIndex(instr.exprIndex) +{} + + LowLevelILLabel::LowLevelILLabel() { BNLowLevelILInitLabel(this); |
