Skip to content

Commit

Permalink
Import ocaml sources for ocaml-flambda/flambda-backend@70ec392f79
Browse files Browse the repository at this point in the history
  • Loading branch information
liam923 committed Jun 13, 2024
1 parent e7226f0 commit 093bf7e
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion upstream/ocaml_flambda/base-rev.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
44e40db5ff117daf29689e14a80f156951b92598
70ec392f795f68d1ec17c7889a0a6ff6c853e11a
26 changes: 13 additions & 13 deletions upstream/ocaml_flambda/utils/config.common.ml
Original file line number Diff line number Diff line change
Expand Up @@ -31,28 +31,28 @@ let standard_library =
(* When artifacts are incompatible with upstream OCaml, ocaml-jst uses
magic numbers ending in 5xx. (The AST remains
compatible, so use upstream numbers) *)
let exec_magic_number = "Caml1999X531"
let exec_magic_number = "Caml1999X532"
(* exec_magic_number is duplicated in runtime/caml/exec.h *)
and cmi_magic_number = "Caml1999I531"
and cmo_magic_number = "Caml1999O531"
and cma_magic_number = "Caml1999A531"
and cmi_magic_number = "Caml1999I532"
and cmo_magic_number = "Caml1999O532"
and cma_magic_number = "Caml1999A532"
and cmx_magic_number =
if flambda || flambda2 then
"Caml2021y532"
"Caml2021y533"
else
"Caml2021Y531"
"Caml2021Y532"
and cmxa_magic_number =
if flambda || flambda2 then
"Caml2021z532"
"Caml2021z533"
else
"Caml2021Z531"
"Caml2021Z532"
and ast_impl_magic_number = "Caml1999M033"
and ast_intf_magic_number = "Caml1999N033"
and cmxs_magic_number = "Caml1999D531"
and cmt_magic_number = "Caml1999T531"
and cms_magic_number = "Caml1999S531"
and linear_magic_number = "Caml1999L531"
and cfg_magic_number = "Caml2021G531"
and cmxs_magic_number = "Caml1999D532"
and cmt_magic_number = "Caml1999T532"
and cms_magic_number = "Caml1999S532"
and linear_magic_number = "Caml1999L532"
and cfg_magic_number = "Caml2021G532"

let safe_string = true
let default_safe_string = true
Expand Down

0 comments on commit 093bf7e

Please sign in to comment.