From 1ae2c0c9e0bb3134f81a051f31ce369926dd7ddd Mon Sep 17 00:00:00 2001 From: Stephen Williams Date: Fri, 15 Aug 2008 21:19:04 -0700 Subject: [PATCH] Extra diagnostic details in elaboration of continuous assignment. --- elaborate.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/elaborate.cc b/elaborate.cc index fd77cf2f7..9254a889c 100644 --- a/elaborate.cc +++ b/elaborate.cc @@ -122,7 +122,8 @@ void PGAssign::elaborate(Design*des, NetScope*scope) const if (debug_elaborate) { cerr << get_fileline() << ": debug: PGAssign: elaborated r-value" << " width="<< rval->vector_width() - << ", type="<< rval->data_type() << endl; + << ", type="<< rval->data_type() + << ", expr=" << *rval_expr << endl; } assert(lval && rval);