package ocaml-base-compiler

  1. Overview
  2. Docs
Official release 4.08.1

Install

Dune Dependency

Authors

Maintainers

Sources

4.08.1.tar.gz
sha256=b53ed3d487b83fd49bc181bded066ae8e6fb592cf40514261d27d36050d5db85
md5=723b6bfe8cf5abcbccc6911143f71055

doc/ocamloptcomp/Remove_unused_arguments/index.html

Module Remove_unused_arguments

val separate_unused_arguments_in_closures : Flambda.program -> backend:(module Backend_intf.S) -> Flambda.program

Introduce a stub function to avoid depending on unused arguments.

For instance, it turns let rec fact n unused = if n = 0 then 1 else n * fact (n-1) unused into let rec fact' n = if n = 0 then 1 else n * fact' (n-1) and fact n unused = fact' n

val separate_unused_arguments_in_set_of_closures : Flambda.set_of_closures -> backend:(module Backend_intf.S) -> Flambda.set_of_closures option
OCaml

Innovation. Community. Security.