aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2021-09-30 09:35:37 +0100
committerYann Herklotz <git@yannherklotz.com>2021-09-30 09:35:37 +0100
commite7679bd745ddd7362524676465314dfef3257458 (patch)
tree7ae8e19b6ba9e500c7386a03f3f74a646c4a001c
parent5d42b5fc8b24492f4457ccd541751db869fefc20 (diff)
downloadvericert-kvx-e7679bd745ddd7362524676465314dfef3257458.tar.gz
vericert-kvx-e7679bd745ddd7362524676465314dfef3257458.zip
Add back scheduling to the driver
-rw-r--r--driver/VericertDriver.ml2
-rwxr-xr-xtest/test_all.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/driver/VericertDriver.ml b/driver/VericertDriver.ml
index aa5309a..0706d79 100644
--- a/driver/VericertDriver.ml
+++ b/driver/VericertDriver.ml
@@ -93,7 +93,7 @@ let compile_c_file sourcename ifile ofile =
end else begin
let verilog =
let translation = if !option_hls_schedule
- then Vericert.Compiler0.transf_hls
+ then Vericert.Compiler0.transf_hls_temp
else Vericert.Compiler0.transf_hls
in
match translation csyntax with
diff --git a/test/test_all.sh b/test/test_all.sh
index f072eba..2d78890 100755
--- a/test/test_all.sh
+++ b/test/test_all.sh
@@ -31,7 +31,7 @@ for cfile in $test_dir/*.c; do
gcc -o $outbase.gcc $cfile >/dev/null 2>&1
$outbase.gcc
expected=$?
- vericert -drtl -o $outbase.v $cfile >/dev/null 2>&1
+ vericert -fschedule -drtl -o $outbase.v $cfile >/dev/null 2>&1
if [[ ! -f $outbase.v ]]; then
echo "ERROR"
continue