mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Fix for rematerializer.
This commit is contained in:
@@ -136,6 +136,10 @@ void Rematerialiser::handleAssignment(set<string> const& _variables, Expression*
|
||||
else
|
||||
m_substitutions.erase(name);
|
||||
}
|
||||
else
|
||||
for (auto const& name: _variables)
|
||||
m_substitutions.erase(name);
|
||||
|
||||
// Disallow substitutions that use a variable that will be reassigned by this assignment.
|
||||
for (auto const& name: _variables)
|
||||
for (auto const& ref: m_referencedBy[name])
|
||||
|
||||
Reference in New Issue
Block a user