summaryrefslogtreecommitdiff
path: root/extraction
diff options
context:
space:
mode:
authorGravatar xleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2013-05-01 09:57:08 +0000
committerGravatar xleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2013-05-01 09:57:08 +0000
commit3a2533890c9c275c38d620f4bcfa4aa76eab19a6 (patch)
tree68662bfcd455fa297c28186c554d03f83d34bb7e /extraction
parent402180a9b3d72825bd5c824c4aa8dcf257328a31 (diff)
Oops, removed a crucial declaration for Allocation.
git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@2227 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e
Diffstat (limited to 'extraction')
-rw-r--r--extraction/extraction.v4
1 files changed, 4 insertions, 0 deletions
diff --git a/extraction/extraction.v b/extraction/extraction.v
index 211569e..df155f1 100644
--- a/extraction/extraction.v
+++ b/extraction/extraction.v
@@ -19,6 +19,7 @@ Require RTLgen.
Require Inlining.
Require ConstpropOp.
Require Constprop.
+Require Allocation.
Require Compiler.
(* Standard lib *)
@@ -72,6 +73,9 @@ Extract Constant ConstpropOp.propagate_float_constants =>
Extract Constant Constprop.generate_float_constants =>
"fun _ -> !Clflags.option_ffloatconstprop >= 2".
+(* Allocation *)
+Extract Constant Allocation.regalloc => "Regalloc.regalloc".
+
(* Linearize *)
Extract Constant Linearize.enumerate_aux => "Linearizeaux.enumerate_aux".