Skip to content

Commit

Permalink
Revert "Add $info, $warning and $error as aliases to $display"
Browse files Browse the repository at this point in the history
This reverts commit 99619bc.
The $error functions are already well supported in devel, so this
patch does nt belong there. Oops.
  • Loading branch information
steveicarus committed Aug 1, 2010
1 parent 99619bc commit f23a56e
Showing 1 changed file with 0 additions and 24 deletions.
24 changes: 0 additions & 24 deletions vpi/sys_display.c
Expand Up @@ -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;
Expand Down

0 comments on commit f23a56e

Please sign in to comment.