소스 검색

Removed 'globals:' comment in generated assembly

Taddeus Kroes 12 년 전
부모
커밋
a2c13675f5
1개의 변경된 파일0개의 추가작업 그리고 1개의 파일을 삭제
  1. 0 1
      phases/print.ml

+ 0 - 1
phases/print.ml

@@ -155,7 +155,6 @@ let rec print_assembly oc instrs =
    * printed at the end of the file here. The directives are sorted by the first
    * 7 characters to group directive opcodes *)
   if List.length !endbuf > 0 then begin
-    output_line (instr2str (Comment ("globals:")));
     let cmp a b = compare (String.sub b 0 7) (String.sub a 0 7) in
     List.iter output_line (List.sort cmp (List.rev !endbuf))
   end