Skip to content

Commit 22c0568

Browse files
committed
IRGenerationContext::internalDispatch(): Remove unused local YulUtilFunctions instance
1 parent 7d2292f commit 22c0568

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

libsolidity/codegen/ir/IRGenerationContext.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,6 @@ string IRGenerationContext::generateInternalDispatchFunction(YulArity const& _ar
139139
)");
140140
templ("functionName", funName);
141141
templ("comma", _arity.in > 0 ? "," : "");
142-
YulUtilFunctions utils(m_evmVersion, m_revertStrings, m_functions);
143142
templ("in", suffixedVariableNameList("in_", 0, _arity.in));
144143
templ("arrow", _arity.out > 0 ? "->" : "");
145144
templ("assignment_op", _arity.out > 0 ? ":=" : "");

0 commit comments

Comments
 (0)