Add a few more `unsupported' messages

This commit is contained in:
Nick Gasson 2008-08-18 15:29:30 +01:00
parent e2dd7425bd
commit 86661c1538
1 changed files with 7 additions and 0 deletions

View File

@ -671,6 +671,13 @@ int draw_stmt(vhdl_procedural *proc, stmt_container *container,
return draw_repeat(proc, container, stmt);
case IVL_ST_UTASK:
return draw_utask(proc, container, stmt);
case IVL_ST_FORCE:
case IVL_ST_RELEASE:
error("force/release statements cannot be translated to VHDL");
return 1;
case IVL_ST_DISABLE:
error("disable statement cannot be translated to VHDL");
return 1;
case IVL_ST_CASEX:
error("casex statement cannot be translated to VHDL");
return 1;