2009-08-06 Neil Vachharajani <nvachhar@gmail.com>
+ * value-prof.c (init_pid_map): Replace xmalloc with XCNEWVEC.
+
+2009-08-06 Neil Vachharajani <nvachhar@gmail.com>
+
* MAINTAINERS: Add my name to Write After Approval list.
2009-08-06 Michael Eager <eager@eagercon.com>
/* Transformations based on profile information for values.
- Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 Free Software
+ Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software
Foundation, Inc.
This file is part of GCC.
if (pid_map != NULL)
return;
- pid_map
- = (struct cgraph_node**) xmalloc (sizeof (struct cgraph_node*) * cgraph_max_pid);
+ pid_map = XCNEWVEC (struct cgraph_node*, cgraph_max_pid);
for (n = cgraph_nodes; n; n = n->next)
{