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.
This commit is contained in:
Cary R 2007-11-29 15:27:36 -08:00 committed by Stephen Williams
parent eeb669c1c9
commit bf49400fb2
1 changed files with 4 additions and 0 deletions

View File

@ -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: