aboutsummaryrefslogtreecommitdiffstats
path: root/src/hls/RTLBlock.v
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2020-11-10 09:35:48 +0000
committerYann Herklotz <git@yannherklotz.com>2020-11-10 09:35:48 +0000
commit2465e372128eff6561431cf921394888919cae09 (patch)
tree50b463228c7daf07606af1b5b1480da887ed9946 /src/hls/RTLBlock.v
parentf2f21f405ae0a1f457f7bc32d5053f0a92959e72 (diff)
downloadvericert-kvx-2465e372128eff6561431cf921394888919cae09.tar.gz
vericert-kvx-2465e372128eff6561431cf921394888919cae09.zip
Fix compilation issue
Diffstat (limited to 'src/hls/RTLBlock.v')
-rw-r--r--src/hls/RTLBlock.v6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/hls/RTLBlock.v b/src/hls/RTLBlock.v
index 7984ac9..dc505ed 100644
--- a/src/hls/RTLBlock.v
+++ b/src/hls/RTLBlock.v
@@ -31,10 +31,10 @@ Inductive instruction : Type :=
Definition bblock_body : Type := list instruction.
Inductive control_flow_inst : Type :=
-(*| RBcall : signature -> reg + ident -> list reg -> reg -> node -> control_flow_inst
+| RBcall : signature -> reg + ident -> list reg -> reg -> node -> control_flow_inst
| RBtailcall : signature -> reg + ident -> list reg -> control_flow_inst
| RBbuiltin : external_function -> list (builtin_arg reg) ->
- builtin_res reg -> node -> control_flow_inst*)
+ builtin_res reg -> node -> control_flow_inst
| RBcond : condition -> list reg -> node -> node -> control_flow_inst
| RBjumptable : reg -> list node -> control_flow_inst
| RBreturn : option reg -> control_flow_inst
@@ -42,7 +42,7 @@ Inductive control_flow_inst : Type :=
Record bblock : Type := mk_bblock {
bb_body: bblock_body;
- bb_exit: control_flow_inst
+ bb_exit: option control_flow_inst
}.
Definition code : Type := PTree.t bblock.