Remove some unnecessary output
This commit is contained in:
parent
db068aa137
commit
37119b1504
|
|
@ -337,10 +337,7 @@ del_def
|
|||
sdf_parse_path, @2.first_line); }
|
||||
/* | '(' K_INTERCONNECT port_instance port_instance delval_list ')' */
|
||||
| '(' K_INTERCONNECT port_interconnect port_interconnect delval_list ')'
|
||||
{ if (sdf_flag_warning) vpi_printf("SDF WARNING: %s:%d: "
|
||||
"INTERCONNECT not supported.\n",
|
||||
sdf_parse_path, @2.first_line);
|
||||
|
||||
{
|
||||
if (sdf_flag_inform) vpi_printf("SDF INFO: %s:%d: INTERCONNECT with "
|
||||
"port1 = %s index = %d, port2 = %s index = %d\n",
|
||||
sdf_parse_path, @2.first_line, $3.name, $3.index, $4.name, $4.index);
|
||||
|
|
|
|||
|
|
@ -185,7 +185,6 @@ vpiHandle get_port_handle(char* port_name, const int sdf_lineno)
|
|||
{
|
||||
if (sdf_flag_warning) vpi_printf("SDF WARNING: %s:%d: Found multiple matching ports for %s !\n", sdf_fname, sdf_lineno, token);
|
||||
}
|
||||
if (sdf_flag_inform) vpi_printf("SDF INFO: %s:%d: Found handle for port %s!\n", sdf_fname, sdf_lineno, token);
|
||||
port_handle = port;
|
||||
}
|
||||
}
|
||||
|
|
@ -211,7 +210,7 @@ void sdf_interconnect_delays(struct interconnect_port_s port1, struct interconne
|
|||
|
||||
if (intermodpath)
|
||||
{
|
||||
if (sdf_flag_inform) vpi_printf("SDF INFO: %s:%d: Got an vpiInterModPath!\n", sdf_fname, sdf_lineno);
|
||||
if (sdf_flag_inform) vpi_printf("SDF INFO: %s:%d: Created a vpiInterModPath\n", sdf_fname, sdf_lineno);
|
||||
|
||||
s_vpi_delay delays;
|
||||
struct t_vpi_time delay_vals[12];
|
||||
|
|
|
|||
Loading…
Reference in New Issue