diff options
author | xleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e> | 2012-07-13 15:01:51 +0000 |
---|---|---|
committer | xleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e> | 2012-07-13 15:01:51 +0000 |
commit | 48b839d15e69c3c9995ca3c25e6a7c4730224292 (patch) | |
tree | 2394d10bcb90b36617bfd79f32aa5e04492a860a /extraction | |
parent | 926bf226e89e0a4935da8815852af76c8d2b3cdf (diff) |
Support for MacOS X's indirect symbols. (first try)
git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@1978 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e
Diffstat (limited to 'extraction')
-rw-r--r-- | extraction/extraction.v | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extraction/extraction.v b/extraction/extraction.v index 81cf53b..02bdb60 100644 --- a/extraction/extraction.v +++ b/extraction/extraction.v @@ -15,7 +15,7 @@ Require Iteration. Require Floats. Require RTLgen. Require Inlining. -Require Constprop. +Require ConstpropOp. Require Coloring. Require Allocation. Require Compiler. @@ -59,7 +59,7 @@ Extract Constant RTLtyping.infer_type_environment => "RTLtypingaux.infer_type_en (* Constprop *) Extract Constant ConstpropOp.propagate_float_constants => "fun _ -> !Clflags.option_ffloatconstprop >= 1". -Extract Constant Constprop.generate_float_constants => +Extract Constant ConstpropOp.generate_float_constants => "fun _ -> !Clflags.option_ffloatconstprop >= 2". (* Coloring *) |