From 7c509137cfea7373628f74d8c4fd94e78eb26cbb Mon Sep 17 00:00:00 2001 From: Alex Beregszaszi Date: Fri, 27 Jul 2018 23:16:53 +0100 Subject: Replace dev::eth namespace with dev::lll in LLL --- lllc/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lllc') diff --git a/lllc/main.cpp b/lllc/main.cpp index 0ca3ff13..e47c66a0 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) + -- cgit v1.2.3 From c2faed77054c69b8ef35b3e54a2c05acc7e93363 Mon Sep 17 00:00:00 2001 From: Alex Beregszaszi Date: Fri, 27 Jul 2018 23:57:15 +0100 Subject: Add --disassemble to lllc help output --- lllc/main.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'lllc') diff --git a/lllc/main.cpp b/lllc/main.cpp index e47c66a0..f863451d 100644 --- a/lllc/main.cpp +++ b/lllc/main.cpp @@ -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); -- cgit v1.2.3