aboutsummaryrefslogtreecommitdiffstats
path: root/driver
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2021-11-17 12:11:12 +0000
committerYann Herklotz <git@yannherklotz.com>2021-11-17 12:11:12 +0000
commitfea7ee4d30aa7597ff5b8e2a2954ed452a1a7a57 (patch)
treef8ac2fb75b23716adf369f7cfa8220aa10b11754 /driver
parent508d59dfb16f97cf5f1b9a994bd5a8159c9e1a3e (diff)
downloadvericert-fea7ee4d30aa7597ff5b8e2a2954ed452a1a7a57.tar.gz
vericert-fea7ee4d30aa7597ff5b8e2a2954ed452a1a7a57.zip
Fix generation of RTLParFU
Diffstat (limited to 'driver')
-rw-r--r--driver/VericertDriver.ml3
1 files changed, 3 insertions, 0 deletions
diff --git a/driver/VericertDriver.ml b/driver/VericertDriver.ml
index 467ae37..e89ff86 100644
--- a/driver/VericertDriver.ml
+++ b/driver/VericertDriver.ml
@@ -67,6 +67,7 @@ let compile_c_file sourcename ifile ofile =
set_dest Vericert.PrintRTL.destination option_drtl ".rtl";
set_dest Vericert.PrintRTLBlock.destination option_drtlblock ".rtlblock";
set_dest Vericert.PrintRTLPar.destination option_drtlpar ".rtlpar";
+ set_dest Vericert.PrintRTLParFU.destination option_drtlparfu ".rtlparfu";
set_dest Vericert.PrintHTL.destination option_dhtl ".htl";
set_dest Vericert.Regalloc.destination_alloctrace option_dalloctrace ".alloctrace";
set_dest Vericert.PrintLTL.destination option_dltl ".ltl";
@@ -393,6 +394,7 @@ let cmdline_actions =
Exact "-drtl", Set option_drtl;
Exact "-drtlblock", Set option_drtlblock;
Exact "-drtlpar", Set option_drtlpar;
+ Exact "-drtlparfu", Set option_drtlparfu;
Exact "-dhtl", Set option_dhtl;
Exact "-dltl", Set option_dltl;
Exact "-dalloctrace", Set option_dalloctrace;
@@ -407,6 +409,7 @@ let cmdline_actions =
option_drtl := true;
option_drtlblock := true;
option_drtlpar := true;
+ option_drtlparfu := true;
option_dhtl := true;
option_dltl := true;
option_dalloctrace := true;