aboutsummaryrefslogtreecommitdiffstats
path: root/driver
diff options
context:
space:
mode:
Diffstat (limited to 'driver')
-rw-r--r--driver/Clflags.ml1
-rw-r--r--driver/Driver.ml1
2 files changed, 2 insertions, 0 deletions
diff --git a/driver/Clflags.ml b/driver/Clflags.ml
index ff2647a7..a5f5f7a4 100644
--- a/driver/Clflags.ml
+++ b/driver/Clflags.ml
@@ -84,3 +84,4 @@ let option_fcoalesce_mem = ref true
let option_fforward_moves = ref true
let option_all_loads_nontrap = ref false
let option_inline_auto_threshold = ref 0
+let option_debug_compcert = ref 0
diff --git a/driver/Driver.ml b/driver/Driver.ml
index b167dbd1..9b873505 100644
--- a/driver/Driver.ml
+++ b/driver/Driver.ml
@@ -330,6 +330,7 @@ let cmdline_actions =
Exact "-Os", Set option_Osize;
Exact "-Obranchless", Set option_Obranchless;
Exact "-finline-auto-threshold", Integer (fun n -> option_inline_auto_threshold := n);
+ Exact "-debug-compcert", Integer (fun n -> option_debug_compcert := n);
Exact "-fsmall-data", Integer(fun n -> option_small_data := n);
Exact "-fsmall-const", Integer(fun n -> option_small_const := n);
Exact "-ffloat-const-prop", Integer(fun n -> option_ffloatconstprop := n);