removed debug message in verilog_netlist.c

This commit is contained in:
Stefan Frederik 2022-10-12 18:21:28 +02:00
parent c065996057
commit 7a7b49f383
1 changed files with 0 additions and 1 deletions

View File

@ -485,7 +485,6 @@ void verilog_block_netlist(FILE *fd, int i)
if(strcmp(get_tok_value(xctx->sym[i].rect[PINLAYER][j].prop_ptr,"verilog_ignore",0), "true")) { if(strcmp(get_tok_value(xctx->sym[i].rect[PINLAYER][j].prop_ptr,"verilog_ignore",0), "true")) {
const char *name = get_tok_value(xctx->sym[i].rect[PINLAYER][j].prop_ptr, "name", 0); const char *name = get_tok_value(xctx->sym[i].rect[PINLAYER][j].prop_ptr, "name", 0);
if(!int_hash_lookup(&table, name, 1, XINSERT_NOREPLACE)) { if(!int_hash_lookup(&table, name, 1, XINSERT_NOREPLACE)) {
dbg(0, "verilog port: %s\n", name);
if(tmp) fprintf(fd, " ,\n"); if(tmp) fprintf(fd, " ,\n");
tmp++; tmp++;
fprintf(fd," %s", name); fprintf(fd," %s", name);