From 2465e372128eff6561431cf921394888919cae09 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Tue, 10 Nov 2020 09:35:48 +0000 Subject: Fix compilation issue --- src/hls/RTLPar.v | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/hls/RTLPar.v') 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 -- cgit