Skip to content

Commit

Permalink
flambda-backend: Fix build_upstream for PR749 (ocaml-flambda#750)
Browse files Browse the repository at this point in the history
Fix build_upstream for Pisint
  • Loading branch information
mshinwell authored Jul 31, 2022
1 parent 8e7e81c commit b337cb6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion 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 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

0 comments on commit b337cb6

Please sign in to comment.