aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Schmidt <github@mschmidt.me>2019-07-09 10:38:36 +0200
committerXavier Leroy <xavierleroy@users.noreply.github.com>2019-07-09 14:43:48 +0200
commit026d8bf506a0a4afebe4e41ad5ce2e7523c45ffc (patch)
tree5e12b2523ca4f72800132595cdc93352fe537d61
parent96383f6dbccd4b280acad395b9a2683a645a9de3 (diff)
downloadcompcert-026d8bf506a0a4afebe4e41ad5ce2e7523c45ffc.tar.gz
compcert-026d8bf506a0a4afebe4e41ad5ce2e7523c45ffc.zip
-O0 now implies -fno-inlining
-rw-r--r--driver/Driver.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/driver/Driver.ml b/driver/Driver.ml
index bd2b4cee..be1252f9 100644
--- a/driver/Driver.ml
+++ b/driver/Driver.ml
@@ -254,7 +254,7 @@ let dump_mnemonics destfile =
let optimization_options = [
option_ftailcalls; option_fifconversion; option_fconstprop; option_fcse;
- option_fredundancy; option_finline_functions_called_once;
+ option_fredundancy; option_finline; option_finline_functions_called_once;
]
let set_all opts () = List.iter (fun r -> r := true) opts