Merge pull request #12001 from ethereum/cmdline-test-for-asm-json

Command-line test for `--asm-json`
This commit is contained in:
chriseth 2021-09-22 11:09:02 +02:00 committed by GitHub
commit d9ad047c21
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 1596 additions and 0 deletions

View File

@ -0,0 +1 @@
--asm-json

View File

@ -0,0 +1,9 @@
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.0;
contract C {
function f(uint x) public pure {
x += 42;
require(x > 100);
}
}

File diff suppressed because it is too large Load Diff