瀏覽代碼

Fixed hline being printed before assembly code at verbosity=1

Taddeus Kroes 12 年之前
父節點
當前提交
903ac1f057
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      phases/output.ml

+ 1 - 1
phases/output.ml

@@ -9,7 +9,7 @@ let phase = function
       Print.print_assembly oc instrs;
       close_out oc
     | None ->
-      if Globals.args.verbose >= 1 then prerr_endline hline;
+      if Globals.args.verbose > 1 then prerr_endline hline;
       Print.print_assembly stdout instrs
     end;
     Empty