mirror of https://github.com/YosysHQ/yosys.git
write_cxxrtl: don't assert on `-noflatten` with `-g4`.
This commit is contained in:
parent
569a6d7fea
commit
d903f47d41
|
@ -1518,8 +1518,9 @@ struct CxxrtlWorker {
|
|||
} else if (is_internal_cell(cell->type)) {
|
||||
log_cmd_error("Unsupported internal cell `%s'.\n", cell->type.c_str());
|
||||
// User cells
|
||||
} else if (for_debug) {
|
||||
// Outlines are called on demand when computing the value of a debug item. Nothing to do here.
|
||||
} else {
|
||||
log_assert(!for_debug);
|
||||
log_assert(cell->known());
|
||||
bool buffered_inputs = false;
|
||||
const char *access = is_cxxrtl_blackbox_cell(cell) ? "->" : ".";
|
||||
|
|
Loading…
Reference in New Issue