Преглед на файлове

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