mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
yul: AsmPrinter fix when appending type name but no type-name is available.
This commit is contained in:
parent
d01c4195f8
commit
b80cc42a7c
@ -266,7 +266,7 @@ string AsmPrinter::formatTypedName(TypedName _variable) const
|
||||
|
||||
string AsmPrinter::appendTypeName(YulString _type) const
|
||||
{
|
||||
if (m_yul)
|
||||
if (m_yul && !_type.empty())
|
||||
return ":" + _type.str();
|
||||
return "";
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user