Skip to content

Commit 9d7ad1d

Browse files
committed
eof: Fix AuxDataLoadN immediate argument printing
1 parent a83ea40 commit 9d7ad1d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libevmasm/AssemblyItem.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ std::string AssemblyItem::toAssemblyText(Assembly const& _assembly) const
342342
break;
343343
case AuxDataLoadN:
344344
assertThrow(data() <= std::numeric_limits<size_t>::max(), AssemblyException, "Invalid auxdataloadn argument.");
345-
text = "auxdataloadn(" + std::to_string(static_cast<size_t>(data())) + ")";
345+
text = "auxdataloadn{" + std::to_string(static_cast<size_t>(data())) + "}";
346346
break;
347347
}
348348
if (m_jumpType == JumpType::IntoFunction || m_jumpType == JumpType::OutOfFunction)

0 commit comments

Comments
 (0)