Add more warnings about untranslatable constructs

This commit is contained in:
Nick Gasson 2008-08-22 20:25:58 +01:00
parent 63a1e25129
commit 331a51e842
1 changed files with 3 additions and 0 deletions

View File

@ -681,6 +681,9 @@ int draw_stmt(vhdl_procedural *proc, stmt_container *container,
case IVL_ST_CASEX:
error("casex statement cannot be translated to VHDL");
return 1;
case IVL_ST_CASEZ:
error("casez statement cannot be translated to VHDL");
return 1;
case IVL_ST_FORK:
error("fork statement cannot be translated to VHDL");
return 1;