diff options
Diffstat (limited to 'asmcomp/deadcode.mli')
-rw-r--r-- | asmcomp/deadcode.mli | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/asmcomp/deadcode.mli b/asmcomp/deadcode.mli new file mode 100644 index 0000000000..6aafae0540 --- /dev/null +++ b/asmcomp/deadcode.mli @@ -0,0 +1,16 @@ +(***********************************************************************) +(* *) +(* OCaml *) +(* *) +(* Xavier Leroy, projet Gallium, INRIA Rocquencourt *) +(* *) +(* Copyright 2014 Institut National de Recherche en Informatique et *) +(* en Automatique. All rights reserved. This file is distributed *) +(* under the terms of the Q Public License version 1.0. *) +(* *) +(***********************************************************************) + +(* Dead code elimination: remove pure instructions whose results are + not used. *) + +val fundecl: Mach.fundecl -> Mach.fundecl |