aboutsummaryrefslogtreecommitdiffstats
path: root/ia32/PrintAsm.ml
diff options
context:
space:
mode:
Diffstat (limited to 'ia32/PrintAsm.ml')
-rw-r--r--ia32/PrintAsm.ml4
1 files changed, 2 insertions, 2 deletions
diff --git a/ia32/PrintAsm.ml b/ia32/PrintAsm.ml
index 94d728e2..e6f905a3 100644
--- a/ia32/PrintAsm.ml
+++ b/ia32/PrintAsm.ml
@@ -166,8 +166,8 @@ module Mingw_System =
fprintf oc " .comm %a, %s, %d\n" symbol name (Z.to_string sz) al
let print_lcomm_decl oc name sz al =
- fprintf oc " .local %a\n" symbol name;
- print_comm_decl oc name sz al
+ fprintf oc " .lcomm %a, %s, %d\n"
+ symbol name (Z.to_string sz) al
end:SYSTEM)