Skip to content
Snippets Groups Projects
Commit 71e71daf authored by an7s's avatar an7s
Browse files

Fixed erroneous assert

Former-commit-id: 8dfa17f090e2c45a3422bb6bbd2acd4dd793e1b2
parent 5c5176aa
No related branches found
No related tags found
No related merge requests found
......@@ -420,7 +420,7 @@ void SCFI_Instrument::AddJumpCFI(Instruction_t* insn)
string jmpBits=getJumpDataBits();
after->SetDataBits(jmpBits);
after->SetComment(insn->getDisassembly()+" ; scfi");
assert(!do_common_slow_path); /* fixme: this defaults to the slow_cfi path. need to color accordingly */
assert(do_common_slow_path); /* fixme: this defaults to the slow_cfi path. need to color accordingly */
createNewRelocation(firp,after,"slow_cfi_path",0);
after->SetFallthrough(NULL);
after->SetTarget(after);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment