From f23a56e632ea757631366323fe9c20be9c305bb2 Mon Sep 17 00:00:00 2001 From: Stephen Williams Date: Sat, 31 Jul 2010 17:12:12 -0700 Subject: [PATCH] Revert "Add $info, $warning and $error as aliases to $display" This reverts commit 99619bc3268efca375e7b49aa6ce26d7c8632609. The $error functions are already well supported in devel, so this patch does nt belong there. Oops. --- vpi/sys_display.c | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/vpi/sys_display.c b/vpi/sys_display.c index c97309439d..2ce1dfde54 100644 --- a/vpi/sys_display.c +++ b/vpi/sys_display.c @@ -1980,30 +1980,6 @@ void sys_display_register() res = vpi_register_systf(&tf_data); vpip_make_systf_system_defined(res); - tf_data.type = vpiSysTask; - tf_data.tfname = "$info"; - tf_data.calltf = sys_display_calltf; - tf_data.compiletf = sys_display_compiletf; - tf_data.sizetf = 0; - tf_data.user_data = "$display"; - vpi_register_systf(&tf_data); - - tf_data.type = vpiSysTask; - tf_data.tfname = "$warning"; - tf_data.calltf = sys_display_calltf; - tf_data.compiletf = sys_display_compiletf; - tf_data.sizetf = 0; - tf_data.user_data = "$display"; - vpi_register_systf(&tf_data); - - tf_data.type = vpiSysTask; - tf_data.tfname = "$error"; - tf_data.calltf = sys_display_calltf; - tf_data.compiletf = sys_display_compiletf; - tf_data.sizetf = 0; - tf_data.user_data = "$display"; - vpi_register_systf(&tf_data); - tf_data.type = vpiSysTask; tf_data.tfname = "$displayh"; tf_data.calltf = sys_display_calltf;