From 0f0bef32f24463afea6d8f987f2c5fa9823e6377 Mon Sep 17 00:00:00 2001 From: Maciej Suminski Date: Thu, 19 Feb 2015 17:01:32 +0100 Subject: [PATCH] vhdlpp: Architecture elaboration counts errors coming from expression elaboration. --- vhdlpp/architec_elaborate.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vhdlpp/architec_elaborate.cc b/vhdlpp/architec_elaborate.cc index 9bade14e8..bdbd206dd 100644 --- a/vhdlpp/architec_elaborate.cc +++ b/vhdlpp/architec_elaborate.cc @@ -369,7 +369,7 @@ int SignalAssignment::elaborate(Entity*ent, Architecture*arc) for (list::iterator cur = rval_.begin() ; cur != rval_.end() ; ++cur) { - (*cur)->elaborate_expr(ent, arc, lval_type); + errors += (*cur)->elaborate_expr(ent, arc, lval_type); } return errors;