Skip to content
Snippets Groups Projects
Commit 73caa58f authored by an7s's avatar an7s
Browse files

fixed assert

Former-commit-id: 19ef4efd4324da6a20da0e4f772a652d33943198
parent 6448c31a
No related branches found
No related tags found
No related merge requests found
......@@ -44,8 +44,7 @@ IBTargets::~IBTargets()
void IBTargets::AddTarget(Instruction_t* const instr, Instruction_t* const ibtarget)
{
assert(instr);
if (!instr || !ibtarget) return;
assert(instr && ibtarget);
InstructionCFGNode_t *ibtargetnode = m_ibtMap[ibtarget];
if (!ibtargetnode)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment