mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Support multi-variable-declarations without value.
This commit is contained in:
+21
@@ -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
|
||||
// }
|
||||
// }
|
||||
Reference in New Issue
Block a user