aboutsummaryrefslogtreecommitdiffstats
path: root/extraction
diff options
context:
space:
mode:
authorCyril SIX <cyril.six@kalray.eu>2019-01-18 15:22:03 +0100
committerCyril SIX <cyril.six@kalray.eu>2019-01-18 15:22:03 +0100
commit458df74c1280ab4f6131272b20f8613cbd683f87 (patch)
treeac66a66a77bbe1c8c62b4f209c0b5965b2b0625e /extraction
parent5122c5f507dcb3cfe5ed6f1df7e52a1e948a03b4 (diff)
downloadcompcert-kvx-458df74c1280ab4f6131272b20f8613cbd683f87.tar.gz
compcert-kvx-458df74c1280ab4f6131272b20f8613cbd683f87.zip
-O0 will not perform postpass scheduling
Diffstat (limited to 'extraction')
-rw-r--r--extraction/extraction.v5
1 files changed, 4 insertions, 1 deletions
diff --git a/extraction/extraction.v b/extraction/extraction.v
index f18c1274..f58991aa 100644
--- a/extraction/extraction.v
+++ b/extraction/extraction.v
@@ -111,6 +111,8 @@ Extract Constant Compopts.optim_CSE =>
"fun _ -> !Clflags.option_fcse".
Extract Constant Compopts.optim_redundancy =>
"fun _ -> !Clflags.option_fredundancy".
+Extract Constant Compopts.optim_postpass =>
+ "fun _ -> !Clflags.option_fpostpass".
Extract Constant Compopts.thumb =>
"fun _ -> !Clflags.option_mthumb".
Extract Constant Compopts.debug =>
@@ -188,4 +190,5 @@ Separate Extraction
AST.signature_main Asmaux
Floats.Float32.from_parsed Floats.Float.from_parsed
Globalenvs.Senv.invert_symbol
- Parser.translation_unit_file.
+ Parser.translation_unit_file
+ Compopts.optim_postpass.