aboutsummaryrefslogtreecommitdiffstats
path: root/src/hls/RTLPar.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/RTLPar.v
parentf2f21f405ae0a1f457f7bc32d5053f0a92959e72 (diff)
downloadvericert-2465e372128eff6561431cf921394888919cae09.tar.gz
vericert-2465e372128eff6561431cf921394888919cae09.zip
Fix compilation issue
Diffstat (limited to 'src/hls/RTLPar.v')
-rw-r--r--src/hls/RTLPar.v8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/hls/RTLPar.v b/src/hls/RTLPar.v
index 0d37985..af3f28b 100644
--- a/src/hls/RTLPar.v
+++ b/src/hls/RTLPar.v
@@ -31,10 +31,10 @@ Inductive instruction : Type :=
Definition bblock_body : Type := list (list instruction).
Inductive control_flow_inst : Type :=
-(*| RPcall : signature -> reg + ident -> list reg -> reg -> node -> control_flow_inst*)
-(*| RPtailcall : signature -> reg + ident -> list reg -> control_flow_inst*)
-(*| RPbuiltin : external_function -> list (builtin_arg reg) ->
- builtin_res reg -> node -> control_flow_inst*)
+| RPcall : signature -> reg + ident -> list reg -> reg -> node -> control_flow_inst
+| RPtailcall : signature -> reg + ident -> list reg -> control_flow_inst
+| RPbuiltin : external_function -> list (builtin_arg reg) ->
+ builtin_res reg -> node -> control_flow_inst
| RPcond : condition -> list reg -> node -> node -> control_flow_inst
| RPjumptable : reg -> list node -> control_flow_inst
| RPreturn : option reg -> control_flow_inst