aboutsummaryrefslogtreecommitdiffstats
path: root/driver
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2020-09-03 09:02:52 +0100
committerYann Herklotz <git@yannherklotz.com>2020-09-03 09:02:52 +0100
commite7cafecf3f8c43ed3302f09e000d4f8775356876 (patch)
tree3f252b5ad64e441a9c21fae213546c8a482ada4e /driver
parent0caef68781a0e33368d2874286f72be17d6d3263 (diff)
downloadvericert-e7cafecf3f8c43ed3302f09e000d4f8775356876.tar.gz
vericert-e7cafecf3f8c43ed3302f09e000d4f8775356876.zip
Add fixes to run scheduling on compilation
Diffstat (limited to 'driver')
-rw-r--r--driver/VericertDriver.ml4
1 files changed, 2 insertions, 2 deletions
diff --git a/driver/VericertDriver.ml b/driver/VericertDriver.ml
index f500499..2b8d45f 100644
--- a/driver/VericertDriver.ml
+++ b/driver/VericertDriver.ml
@@ -91,14 +91,14 @@ let compile_c_file sourcename ifile ofile =
close_out oc
end else begin
let verilog =
- match Vericert.Compiler0.transf_hls csyntax with
+ match Vericert.Compiler0.transf_hls_temp csyntax with
| Vericert.Errors.OK v ->
v
| Vericert.Errors.Error msg ->
let loc = file_loc sourcename in
fatal_error loc "%a" print_error msg in
let oc = open_out ofile in
- Vericert.PrintVerilog.print_program !option_debug_hls oc verilog;
+ Vericert.PrintRTLBlock.print_program oc verilog;
close_out oc
end