From 5f90a3e48c07512e0d4ed44fb925abcebebdf14d Mon Sep 17 00:00:00 2001 From: Nick Gasson Date: Fri, 6 Jun 2008 18:22:03 +0100 Subject: [PATCH] Translate sub-statement of @{..} --- tgt-vhdl/stmt.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tgt-vhdl/stmt.cc b/tgt-vhdl/stmt.cc index 8d98a52d4..44b8ebc4a 100644 --- a/tgt-vhdl/stmt.cc +++ b/tgt-vhdl/stmt.cc @@ -191,7 +191,6 @@ static int draw_wait(vhdl_process *proc, ivl_statement_t stmt) } proc->add_sensitivity(signame); - return 0; } else if ((log = ivl_nexus_ptr_log(nexus_ptr))) { error("Nexus points to net logic"); @@ -206,6 +205,7 @@ static int draw_wait(vhdl_process *proc, ivl_statement_t stmt) } ivl_statement_t sub_stmt = ivl_stmt_sub_stmt(stmt); + draw_stmt(proc, sub_stmt); return 0; }