diff options
author | chriseth <chris@ethereum.org> | 2018-07-30 22:47:55 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-30 22:47:55 +0800 |
commit | 7cf5cd6050c616599d476a865b1fcfb57472ef22 (patch) | |
tree | 16d0b81f9ace5fdbc2a9dc21010ca1e89d3b2f6f /lllc | |
parent | 9d09e21b6c7662ad037de3e14dfc8f72f6d0b274 (diff) | |
parent | c2faed77054c69b8ef35b3e54a2c05acc7e93363 (diff) | |
download | dexon-solidity-7cf5cd6050c616599d476a865b1fcfb57472ef22.tar dexon-solidity-7cf5cd6050c616599d476a865b1fcfb57472ef22.tar.gz dexon-solidity-7cf5cd6050c616599d476a865b1fcfb57472ef22.tar.bz2 dexon-solidity-7cf5cd6050c616599d476a865b1fcfb57472ef22.tar.lz dexon-solidity-7cf5cd6050c616599d476a865b1fcfb57472ef22.tar.xz dexon-solidity-7cf5cd6050c616599d476a865b1fcfb57472ef22.tar.zst dexon-solidity-7cf5cd6050c616599d476a865b1fcfb57472ef22.zip |
Merge pull request #4608 from ethereum/lll-namespace
Replace dev::eth namespace with dev::lll in LLL
Diffstat (limited to 'lllc')
-rw-r--r-- | lllc/main.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lllc/main.cpp b/lllc/main.cpp index 0ca3ff13..f863451d 100644 --- a/lllc/main.cpp +++ b/lllc/main.cpp @@ -32,7 +32,7 @@ using namespace std; using namespace dev; using namespace dev::solidity; -using namespace dev::eth; +using namespace dev::lll; static string const VersionString = string(ETH_PROJECT_VERSION) + @@ -49,6 +49,7 @@ static void help() << " -a,--assembly Only parse and compile; show assembly." << endl << " -t,--parse-tree Only parse; show parse tree." << endl << " -o,--optimise Turn on/off the optimiser; off by default." << endl + << " -d,--disassemble Disassemble input into an opcode stream." << endl << " -h,--help Show this help message and exit." << endl << " -V,--version Show the version and exit." << endl; exit(0); |