소스 검색

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