aboutsummaryrefslogtreecommitdiffstats
path: root/lllc/main.cpp
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2016-10-25 09:15:21 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2016-10-25 19:43:18 +0800
commit3a6ac6226cae21c3c00fae1acf4481d8101f5371 (patch)
tree845d7521ecba75bdcf709abce68b9ec183547449 /lllc/main.cpp
parent43e42482a7c4b96e38d5f0594cbce3925bc26fb3 (diff)
downloaddexon-solidity-3a6ac6226cae21c3c00fae1acf4481d8101f5371.tar.gz
dexon-solidity-3a6ac6226cae21c3c00fae1acf4481d8101f5371.tar.zst
dexon-solidity-3a6ac6226cae21c3c00fae1acf4481d8101f5371.zip
LLL: turn off optimiser by default
Diffstat (limited to 'lllc/main.cpp')
-rw-r--r--lllc/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lllc/main.cpp b/lllc/main.cpp
index 380a0ba2..3821d6a3 100644
--- a/lllc/main.cpp
+++ b/lllc/main.cpp
@@ -41,7 +41,7 @@ void help()
<< " -x,--hex Parse, compile and assemble; output byte code in hex." << endl
<< " -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; on by default." << endl
+ << " -o,--optimise Turn on/off the optimiser; off by default." << endl
<< " -h,--help Show this help message and exit." << endl
<< " -V,--version Show the version and exit." << endl;
exit(0);
@@ -82,7 +82,7 @@ enum Mode { Binary, Hex, Assembly, ParseTree, Disassemble };
int main(int argc, char** argv)
{
setDefaultOrCLocale();
- unsigned optimise = 1;
+ unsigned optimise = 0;
string infile;
Mode mode = Hex;