mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-21 01:41:10 +00:00
Make statement blocks more identifiable.
This commit is contained in:
parent
43b5edf46b
commit
c79620f04c
1 changed files with 6 additions and 2 deletions
|
@ -188,12 +188,16 @@ flow_sblock (sblock_t *sblock)
|
|||
{
|
||||
statement_t *s;
|
||||
sblock_t *target;
|
||||
ex_label_t *l;
|
||||
|
||||
printf (" sb_%p [shape=none,label=<\n", sblock);
|
||||
printf (" <table border=\"0\" cellborder=\"1\" cellspacing=\"0\">\n");
|
||||
printf (" <tr>\n");
|
||||
printf (" <td></td>\n");
|
||||
printf (" <td height=\"0\" colspan=\"2\" port=\"s\"></td>\n");
|
||||
printf (" <td>%p</td>\n", sblock);
|
||||
printf (" <td height=\"0\" colspan=\"2\" port=\"s\">\n");
|
||||
for (l = sblock->labels; l; l = l->next)
|
||||
printf (" %s\n", l->name);
|
||||
printf (" </td>\n");
|
||||
printf (" <td></td>\n");
|
||||
printf (" </tr>\n");
|
||||
for (s = sblock->statements; s; s = s->next)
|
||||
|
|
Loading…
Reference in a new issue