aboutsummaryrefslogtreecommitdiffstats
path: root/driver/Driver.ml
diff options
context:
space:
mode:
authorDavid Monniaux <david.monniaux@univ-grenoble-alpes.fr>2020-04-08 16:28:00 +0200
committerDavid Monniaux <david.monniaux@univ-grenoble-alpes.fr>2020-04-08 16:28:00 +0200
commit96165dbec88ab4c951d99e64e51f5c55a1244137 (patch)
tree86110cecc1b97e39f2f8e5d58e228dd1dd10a1c5 /driver/Driver.ml
parentda923568ad5085654b8db034310c4db50848e16e (diff)
downloadcompcert-kvx-96165dbec88ab4c951d99e64e51f5c55a1244137.tar.gz
compcert-kvx-96165dbec88ab4c951d99e64e51f5c55a1244137.zip
fixed a bug in support libraries; reload profiling info
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 909ef0d5..7fbcb025 100644
--- a/driver/Driver.ml
+++ b/driver/Driver.ml
@@ -328,6 +328,7 @@ let cmdline_actions =
_Regexp "-O[123]$", Unit (set_all optimization_options);
Exact "-Os", Set option_Osize;
Exact "-Obranchless", Set option_Obranchless;
+ Exact "-fprofile-use=", String (fun s -> Profilingaux.load_profiling_info s);
Exact "-finline-auto-threshold", Integer (fun n -> option_inline_auto_threshold := n);
Exact "-fsmall-data", Integer(fun n -> option_small_data := n);
Exact "-fsmall-const", Integer(fun n -> option_small_const := n);