From 2a389a9abe0c7ec7370c81a1ef5a8975163c0b9f Mon Sep 17 00:00:00 2001 From: Cary R Date: Fri, 8 Aug 2008 13:57:26 -0700 Subject: [PATCH] Display signal array size when using -delaborate. This patch modifies one of the debug_elaborate messages to display the array information when needed. --- elab_sig.cc | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/elab_sig.cc b/elab_sig.cc index 8faa7f2c9..cccac8ba7 100644 --- a/elab_sig.cc +++ b/elab_sig.cc @@ -1003,8 +1003,11 @@ NetNet* PWire::elaborate_sig(Design*des, NetScope*scope) const if (debug_elaborate) { cerr << get_fileline() << ": debug: Create signal " - << wtype << " ["< 0) { + cerr << " [" << array_s0 << ":" << array_e0 << "]" << endl; + } + cerr << " in scope " << scope_path(scope) << endl; }