mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Merge pull request #6883 from ethereum/yul-ast-printer-notypes
yul: AsmPrinter fix when appending type name but no type-name is available
This commit is contained in:
commit
68e24475e1
@ -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