Support multi-variable-declarations without value.

This commit is contained in:
Daniel Kirchner
2021-04-14 19:14:24 +02:00
parent 5dae888c00
commit 3a4769bd99
2 changed files with 32 additions and 5 deletions
@@ -0,0 +1,21 @@
{
mstore(0x40, memoryguard(0x60))
{
let x, y
}
{
let z, $w
}
}
// ----
// step: fakeStackLimitEvader
//
// {
// mstore(0x40, memoryguard(0x80))
// { let x, y }
// {
// let z_1, $w_2
// mstore(0x60, $w_2)
// let z := z_1
// }
// }