List some more illegal VHDL names

This commit is contained in:
Nick Gasson 2008-07-03 15:20:43 +01:00
parent 7e999c5496
commit fb08164cbc
1 changed files with 2 additions and 1 deletions

View File

@ -184,7 +184,8 @@ static std::string make_safe_name(ivl_signal_t sig)
name.insert(0, "VL");
const char *vhdl_reserved[] = {
"in", "out", "entity", "architecture", "inout", // Etc...
"in", "out", "entity", "architecture", "inout", "array",
"is", "not", "and", "or", "bus", // Etc...
NULL
};
for (const char **p = vhdl_reserved; *p != NULL; p++) {