Skip to content

Commit

Permalink
Yul BlockHasher: Do not hash number of arguments for function calls.
Browse files Browse the repository at this point in the history
  • Loading branch information
clonker committed Dec 6, 2024
1 parent 03e04f1 commit dda6ecd
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion libyul/optimiser/BlockHasher.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ void ASTHasherBase::hashFunctionCall(FunctionCall const& _funCall)
{
hash64(compileTimeLiteralHash("UserDefined"));
hash64(_identifier.name.hash());
hash64(_funCall.arguments.size());
}
};
std::visit(visitor, _funCall.functionName);
Expand Down

0 comments on commit dda6ecd

Please sign in to comment.