Explorar el Código

Fixed hline being printed before assembly code at verbosity=1

Taddeus Kroes hace 12 años
padre
commit
903ac1f057
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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