From bf49400fb2f8fdb59917cdff2d55abd20b26bcf7 Mon Sep 17 00:00:00 2001 From: Cary R Date: Thu, 29 Nov 2007 15:27:36 -0800 Subject: [PATCH] Add vpiIterator and vpiMemory to string version of vpiType This patch adds both vpiIterate and vpiMemory to the list of types that can be displayed as strings. --- vvp/vpi_priv.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/vvp/vpi_priv.cc b/vvp/vpi_priv.cc index 259a3a341..75a82e1eb 100644 --- a/vvp/vpi_priv.cc +++ b/vvp/vpi_priv.cc @@ -195,8 +195,12 @@ static const char* vpi_type_values(PLI_INT32 code) return "vpiConstant"; case vpiIntegerVar: return "vpiIntegerVar"; + case vpiIterator: + return "vpiIterator"; case vpiFunction: return "vpiFunction"; + case vpiMemory: + return "vpiMemory"; case vpiModule: return "vpiModule"; case vpiNet: