Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lowlevelilinstruction.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3541,7 +3541,7 @@ ExprId LowLevelILFunction::BoolToInt(size_t size, ExprId a, const ILSourceLocati

ExprId LowLevelILFunction::AddOverflow(size_t size, ExprId left, ExprId right, const ILSourceLocation& loc)
{
return AddExprWithLocation(LLIL_ADD_OVERFLOW, loc, size, left, right);
return AddExprWithLocation(LLIL_ADD_OVERFLOW, loc, size, 0, left, right);
}

ExprId LowLevelILFunction::SystemCall(const ILSourceLocation& loc)
Expand Down