Skip to content

Commit

Permalink
Wrong MASM syntax, try again.
Browse files Browse the repository at this point in the history
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@14704 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
  • Loading branch information
xavierleroy committed Apr 29, 2014
1 parent b4c3955 commit 3ce32fb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion asmcomp/amd64/emit_nt.mlp
Expand Up @@ -335,7 +335,7 @@ let add_float_constant cst =
lbl

let emit_float_constant (cst, lbl) =
`{emit_label lbl}: QWORD {emit_int64 cst}\n`
`{emit_label lbl} QWORD {emit_int64 cst}\n`

let emit_movabs reg n =
(* force ml64 to use mov reg, imm64 instruction *)
Expand Down
2 changes: 1 addition & 1 deletion asmcomp/i386/emit_nt.mlp
Expand Up @@ -377,7 +377,7 @@ let add_float_constant cst =
lbl

let emit_float_constant (cst, lbl) =
`{emit_label lbl}: QWORD {emit_int64 cst}\n`
`{emit_label lbl} QWORD {emit_int64 cst}\n`

(* Output the assembly code for an instruction *)

Expand Down

0 comments on commit 3ce32fb

Please sign in to comment.