aboutsummaryrefslogtreecommitdiffstats
path: root/driver/Driver.ml
diff options
context:
space:
mode:
authorDavid Monniaux <david.monniaux@univ-grenoble-alpes.fr>2020-04-23 12:29:38 +0200
committerDavid Monniaux <david.monniaux@univ-grenoble-alpes.fr>2020-04-23 12:29:38 +0200
commit2316b5dc954b4047f3f48c61e7f4e34deb729efe (patch)
treee4818aaae7620d8df89ee5d0c407edbb77785da0 /driver/Driver.ml
parent69447b8515c0bd123c6aa72c5545cf9beda79ec4 (diff)
downloadcompcert-kvx-2316b5dc954b4047f3f48c61e7f4e34deb729efe.tar.gz
compcert-kvx-2316b5dc954b4047f3f48c61e7f4e34deb729efe.zip
make tracing output optional
Diffstat (limited to 'driver/Driver.ml')
-rw-r--r--driver/Driver.ml1
1 files changed, 1 insertions, 0 deletions
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);