瀏覽代碼

Fixed usage message

Taddeus Kroes 11 年之前
父節點
當前提交
f9856f59b0
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      main.ml

+ 2 - 2
main.ml

@@ -64,11 +64,11 @@ let parse_args () =
     ("-noopt", Arg.Unit (fun _ -> Globals.args.optimize <- false),
     ("-noopt", Arg.Unit (fun _ -> Globals.args.optimize <- false),
              "   Disable optimization");
              "   Disable optimization");
     ("-opt", Arg.Unit (fun _ -> Globals.args.optimize <- true),
     ("-opt", Arg.Unit (fun _ -> Globals.args.optimize <- true),
-           "     Enable optimization (overwrite earlier -nocpp)");
+           "     Enable optimization (overwrite earlier -noopt)");
 
 
     ("-upto", Arg.String (fun s -> Globals.args.endphase <- s),
     ("-upto", Arg.String (fun s -> Globals.args.endphase <- s),
             "<phase> Stop after the specified phase, and print the intermediate \
             "<phase> Stop after the specified phase, and print the intermediate \
-             representation to stderr.\n        \
+             representation to stderr.\n            \
              Possible options are (in order of execution):" ^ upto_usage phases);
              Possible options are (in order of execution):" ^ upto_usage phases);
   ] in
   ] in