From 34c3d06883269e0d36e228e00c68dce141750b5b Mon Sep 17 00:00:00 2001 From: Gav Wood Date: Mon, 26 May 2014 11:34:43 +0200 Subject: [PATCH] Ever more repotting. --- main.cpp | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/main.cpp b/main.cpp index 1afc3ef69..edad99a0a 100644 --- a/main.cpp +++ b/main.cpp @@ -34,8 +34,12 @@ void help() cout << "Usage lllc [OPTIONS] " << endl << "Options:" << endl - << " -h,--help Show this help message and exit." << endl - << " -V,--version Show the version and exit." << endl; + << " -b,--binary Parse, compile and assemble; output byte code in binary." << endl + << " -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 + << " -h,--help Show this help message and exit." << endl + << " -V,--version Show the version and exit." << endl; exit(0); } @@ -61,7 +65,7 @@ int main(int argc, char** argv) help(); else if (arg == "-b" || arg == "--binary") mode = Binary; - else if (arg == "-h" || arg == "--hex") + else if (arg == "-x" || arg == "--hex") mode = Hex; else if (arg == "-t" || arg == "--parse-tree") mode = ParseTree;