Fix for br932 part 2 - make $fopen accept SV 'string' type.

The is_string_obj function in vpi/sys_priv.c needed to be updated to
recognise the vpiStringVar object type.
This commit is contained in:
Martin Whitaker 2013-06-14 21:00:39 +01:00
parent 503487e9ea
commit 9af0811a1c
1 changed files with 1 additions and 0 deletions

View File

@ -219,6 +219,7 @@ unsigned is_string_obj(vpiHandle obj)
case vpiPartSelect:
case vpiReg:
case vpiTimeVar:
case vpiStringVar:
rtn = 1;
break;
}