We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
AuxDataLoadN
1 parent a83ea40 commit 9d7ad1dCopy full SHA for 9d7ad1d
libevmasm/AssemblyItem.cpp
@@ -342,7 +342,7 @@ std::string AssemblyItem::toAssemblyText(Assembly const& _assembly) const
342
break;
343
case AuxDataLoadN:
344
assertThrow(data() <= std::numeric_limits<size_t>::max(), AssemblyException, "Invalid auxdataloadn argument.");
345
- text = "auxdataloadn(" + std::to_string(static_cast<size_t>(data())) + ")";
+ text = "auxdataloadn{" + std::to_string(static_cast<size_t>(data())) + "}";
346
347
}
348
if (m_jumpType == JumpType::IntoFunction || m_jumpType == JumpType::OutOfFunction)
0 commit comments