Revert "Add $info, $warning and $error as aliases to $display"

This reverts commit 99619bc326.
The $error functions are already well supported in devel, so this
patch does nt belong there. Oops.
This commit is contained in:
Stephen Williams 2010-07-31 17:12:12 -07:00
parent 99619bc326
commit f23a56e632
1 changed files with 0 additions and 24 deletions

View File

@ -1980,30 +1980,6 @@ void sys_display_register()
res = vpi_register_systf(&tf_data); res = vpi_register_systf(&tf_data);
vpip_make_systf_system_defined(res); 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.type = vpiSysTask;
tf_data.tfname = "$displayh"; tf_data.tfname = "$displayh";
tf_data.calltf = sys_display_calltf; tf_data.calltf = sys_display_calltf;