aboutsummaryrefslogtreecommitdiffstats
path: root/src/hls/Partition.ml
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2022-05-12 20:47:14 +0100
committerYann Herklotz <git@yannherklotz.com>2022-05-12 20:47:14 +0100
commitb3e2078df318a2d5e54de0b09963f37d63327f0a (patch)
treef6a941494444021e42ff7c35b04d0d24afe033b5 /src/hls/Partition.ml
parent3113194b86597c770b83d8efb4c7980e1bc4a715 (diff)
downloadvericert-b3e2078df318a2d5e54de0b09963f37d63327f0a.tar.gz
vericert-b3e2078df318a2d5e54de0b09963f37d63327f0a.zip
Famous proven but not tested has been fixed
Diffstat (limited to 'src/hls/Partition.ml')
-rw-r--r--src/hls/Partition.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hls/Partition.ml b/src/hls/Partition.ml
index 545277b..4e699e6 100644
--- a/src/hls/Partition.ml
+++ b/src/hls/Partition.ml
@@ -73,7 +73,7 @@ let rec next_bblock_from_RTL is_start e (c : RTL.code) s i =
if List.exists (fun x -> x = s) (fst e) then
Errors.OK { bb_body = [i']; bb_exit = RBgoto s' }
else if List.exists (fun x -> x = s) (snd e) && not is_start then
- Errors.OK { bb_body = [RBnop]; bb_exit = RBgoto s }
+ Errors.OK { bb_body = []; bb_exit = RBgoto s }
else begin
match next_bblock_from_RTL false e c s' i_n with
| Errors.OK bb ->