Skip to content

Commit 3ce32fb

Browse files
committed
Wrong MASM syntax, try again.
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@14704 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
1 parent b4c3955 commit 3ce32fb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

asmcomp/amd64/emit_nt.mlp

+1-1
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ let add_float_constant cst =
335335
lbl
336336

337337
let emit_float_constant (cst, lbl) =
338-
`{emit_label lbl}: QWORD {emit_int64 cst}\n`
338+
`{emit_label lbl} QWORD {emit_int64 cst}\n`
339339

340340
let emit_movabs reg n =
341341
(* force ml64 to use mov reg, imm64 instruction *)

asmcomp/i386/emit_nt.mlp

+1-1
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ let add_float_constant cst =
377377
lbl
378378

379379
let emit_float_constant (cst, lbl) =
380-
`{emit_label lbl}: QWORD {emit_int64 cst}\n`
380+
`{emit_label lbl} QWORD {emit_int64 cst}\n`
381381

382382
(* Output the assembly code for an instruction *)
383383

0 commit comments

Comments
 (0)