summaryrefslogtreecommitdiff
path: root/gcc/conflict.c
diff options
context:
space:
mode:
authorghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>2003-08-11 21:47:39 +0000
committerghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>2003-08-11 21:47:39 +0000
commit9c985aeccc2419d2c3af8eb0a36954e4709d6ce6 (patch)
tree94bcf5915821086716a7469523e1815e7340f194 /gcc/conflict.c
parent5b89bf44d35ed7ec2d02d20108af48a2db19a8da (diff)
downloadgcc-9c985aeccc2419d2c3af8eb0a36954e4709d6ce6.tar.gz
* config/avr/avr.c (avr_init_once): Use xcalloc in lieu of
xmalloc/memset. * config/ia64/ia64.c (ia64_reorg): Likewise. * conflict.c (conflict_graph_new): Likewise. * fixinc/fixincl.c (run_compiles): Likewise. * genattrtab.c (optimize_attrs): Likewise. * genrecog.c (new_decision): Likewise. * haifa-sched.c (schedule_block): Likewise. * hashtable.c (ht_create): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70337 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/conflict.c')
-rw-r--r--gcc/conflict.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/conflict.c b/gcc/conflict.c
index 9b637737411..c832b7df52c 100644
--- a/gcc/conflict.c
+++ b/gcc/conflict.c
@@ -160,9 +160,8 @@ conflict_graph_new (int num_regs)
obstack_init (&graph->arc_obstack);
/* Create and zero the lookup table by register number. */
- graph->neighbor_heads = xmalloc (num_regs * sizeof (conflict_graph_arc));
+ graph->neighbor_heads = xcalloc (num_regs, sizeof (conflict_graph_arc));
- memset (graph->neighbor_heads, 0, num_regs * sizeof (conflict_graph_arc));
return graph;
}