From 01efffedfc286b9a6784f96e6a10dcef1b1d9f9b Mon Sep 17 00:00:00 2001 From: steve Date: Thu, 23 May 2002 01:07:26 +0000 Subject: [PATCH] Ignore Named events in vcd signal scan. --- vpi/sys_vcd.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/vpi/sys_vcd.c b/vpi/sys_vcd.c index 503cabc26..356c438df 100644 --- a/vpi/sys_vcd.c +++ b/vpi/sys_vcd.c @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ #if !defined(WINNT) && !defined(macintosh) -#ident "$Id: sys_vcd.c,v 1.28 2002/05/10 16:00:16 steve Exp $" +#ident "$Id: sys_vcd.c,v 1.29 2002/05/23 01:07:26 steve Exp $" #endif # include "config.h" @@ -537,6 +537,10 @@ static void scan_item(unsigned depth, vpiHandle item, int skip) /* don't know how to watch memories. */ break; + case vpiNamedEvent: + /* There is nothing in named events to dump. */ + break; + case vpiNet: type = "wire"; if(0){ case vpiReg: type = "reg"; } @@ -780,6 +784,9 @@ void sys_vcd_register() /* * $Log: sys_vcd.c,v $ + * Revision 1.29 2002/05/23 01:07:26 steve + * Ignore Named events in vcd signal scan. + * * Revision 1.28 2002/05/10 16:00:16 steve * ignore vpiMemory objects in vcd dumper. *