mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Merge pull request #5595 from ethereum/ssavaluetracker-fix
SSAValueTracker should only use nullptr for default values
This commit is contained in:
commit
d3c8ba00ac
@ -37,7 +37,7 @@ void SSAValueTracker::operator()(VariableDeclaration const& _varDecl)
|
||||
{
|
||||
if (_varDecl.variables.size() == 1)
|
||||
setValue(_varDecl.variables.front().name, _varDecl.value.get());
|
||||
else
|
||||
else if (!_varDecl.value)
|
||||
for (auto const& var: _varDecl.variables)
|
||||
setValue(var.name, nullptr);
|
||||
}
|
||||
|
@ -33,6 +33,8 @@ namespace yul
|
||||
* Class that walks the AST and stores the initial value of each variable
|
||||
* that is never assigned to.
|
||||
*
|
||||
* Default value is represented as nullptr.
|
||||
*
|
||||
* Prerequisite: Disambiguator
|
||||
*/
|
||||
class SSAValueTracker: public ASTWalker
|
||||
|
@ -0,0 +1,14 @@
|
||||
{
|
||||
function f() -> x, z {}
|
||||
let c, d := f()
|
||||
let y := add(d, add(c, 7))
|
||||
}
|
||||
// ----
|
||||
// expressionSimplifier
|
||||
// {
|
||||
// function f() -> x, z
|
||||
// {
|
||||
// }
|
||||
// let c, d := f()
|
||||
// let y := add(add(d, c), 7)
|
||||
// }
|
@ -0,0 +1,12 @@
|
||||
// c & d can't be optimized as expression simplifier doesn't handle default
|
||||
// values yet
|
||||
{
|
||||
let c, d
|
||||
let y := add(d, add(c, 7))
|
||||
}
|
||||
// ----
|
||||
// expressionSimplifier
|
||||
// {
|
||||
// let c, d
|
||||
// let y := add(add(d, c), 7)
|
||||
// }
|
Loading…
Reference in New Issue
Block a user