Skip to content

Fix build_upstream for PR749 #750

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 31, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ocaml/middle_end/convert_primitives.ml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ let convert (prim : Lambda.primitive) : Clambda_primitives.primitive =
| Parraysetu kind -> Parraysetu kind
| Parrayrefs kind -> Parrayrefs kind
| Parraysets kind -> Parraysets kind
| Pisint -> Pisint
| Pisint _ -> Pisint
| Pisout -> Pisout
| Pcvtbint (src, dest, m) -> Pcvtbint (src, dest, m)
| Pnegbint (bi,m) -> Pnegbint (bi,m)
Expand Down
4 changes: 2 additions & 2 deletions ocaml/middle_end/internal_variable_names.ml
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ let of_primitive : Lambda.primitive -> string = function
| Parrayrefs _ -> parrayrefs
| Parraysets _ -> parraysets
| Pctconst _ -> pctconst
| Pisint -> pisint
| Pisint _ -> pisint
| Pisout -> pisout
| Pbintofint _ -> pbintofint
| Pintofbint _ -> pintofbint
Expand Down Expand Up @@ -488,7 +488,7 @@ let of_primitive_arg : Lambda.primitive -> string = function
| Parrayrefs _ -> parrayrefs_arg
| Parraysets _ -> parraysets_arg
| Pctconst _ -> pctconst_arg
| Pisint -> pisint_arg
| Pisint _ -> pisint_arg
| Pisout -> pisout_arg
| Pbintofint _ -> pbintofint_arg
| Pintofbint _ -> pintofbint_arg
Expand Down