mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
Bury a dead field.
This commit is contained in:
parent
8844ac61a2
commit
98245f6d00
2 changed files with 1 additions and 2 deletions
|
@ -88,7 +88,6 @@ typedef struct function_s {
|
|||
*/
|
||||
struct daglabel_s **vars;
|
||||
int num_vars; ///< total number of variables referenced
|
||||
struct flowloop_s *loops; ///< linked list of loops in the function
|
||||
} function_t;
|
||||
|
||||
extern function_t *current_func;
|
||||
|
|
|
@ -651,7 +651,7 @@ emit_function (function_t *f, expr_t *e)
|
|||
{
|
||||
flowloop_t *l;
|
||||
int n = 0;
|
||||
for (l = f->loops; l; l = l->next)
|
||||
for (l = f->graph->loops; l; l = l->next)
|
||||
n++;
|
||||
printf ("%s %d %d %d\n", f->name, f->graph->num_nodes, f->num_vars, n);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue