Bury a dead field.

This commit is contained in:
Bill Currie 2012-11-05 15:19:49 +09:00
parent 8844ac61a2
commit 98245f6d00
2 changed files with 1 additions and 2 deletions

View file

@ -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;

View file

@ -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);
}