Merge pull request #7404 from ethereum/develop

Merge develop into 0.6.0
This commit is contained in:
Christian Parpart
2019-09-11 15:49:38 +02:00
committed by GitHub
5 changed files with 32 additions and 5 deletions
@@ -0,0 +1,27 @@
{
let a := 0
let b := 1
let c := 2
sstore(a, b)
mstore(900, 7)
let d := staticcall(10000, 10, 0, 200, 0, 200)
sstore(add(a, 1), mload(900))
// Main test objective: replace this sload.
mstore(0, sload(a))
}
// ====
// step: loadResolver
// EVMVersion: >=byzantium
// ----
// {
// let a := 0
// let b := 1
// sstore(a, b)
// let _1 := 7
// let _2 := 900
// mstore(_2, _1)
// let _3 := 200
// pop(staticcall(10000, 10, a, _3, a, _3))
// sstore(1, mload(_2))
// mstore(a, b)
// }
+1 -1
View File
@@ -287,7 +287,7 @@ TestStats TestTool::processPath(
_testCaseCreator,
_options,
fullpath,
currentPath.string()
currentPath.generic_path().string()
);
auto result = testTool.process();