Browse Source

Fixed hline being printed before assembly code at verbosity=1

Taddeus Kroes 12 years ago
parent
commit
903ac1f057
1 changed files with 1 additions and 1 deletions
  1. 1 1
      phases/output.ml

+ 1 - 1
phases/output.ml

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