diff --git a/vpi/sdf_parse.y b/vpi/sdf_parse.y index 5187a0d80..d865aa9f1 100644 --- a/vpi/sdf_parse.y +++ b/vpi/sdf_parse.y @@ -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); diff --git a/vpi/sys_sdf.c b/vpi/sys_sdf.c index 8426f987c..739803047 100644 --- a/vpi/sys_sdf.c +++ b/vpi/sys_sdf.c @@ -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];