View | Details | Return to bug 79399
Collapse All | Expand All

(-)gcc/ira-int.h.jj (-1 / +1 lines)
Lines 782-788 struct target_ira_int { Link Here
782
782
783
  /* Initialized once.  It is a maximal possible size of the allocated
783
  /* Initialized once.  It is a maximal possible size of the allocated
784
     struct costs.  */
784
     struct costs.  */
785
  int x_max_struct_costs_size;
785
  size_t x_max_struct_costs_size;
786
786
787
  /* Allocated and initialized once, and used to initialize cost values
787
  /* Allocated and initialized once, and used to initialize cost values
788
     for each insn.  */
788
     for each insn.  */
(-)gcc/ira-costs.c.jj (-1 / +1 lines)
Lines 74-80 static struct costs *costs; Link Here
74
static struct costs *total_allocno_costs;
74
static struct costs *total_allocno_costs;
75
75
76
/* It is the current size of struct costs.  */
76
/* It is the current size of struct costs.  */
77
static int struct_costs_size;
77
static size_t struct_costs_size;
78
78
79
/* Return pointer to structure containing costs of allocno or pseudo
79
/* Return pointer to structure containing costs of allocno or pseudo
80
   with given NUM in array ARR.  */
80
   with given NUM in array ARR.  */

Return to bug 79399