Replace XALLOCAVEC with XCNEWVEC (PR c/79471).
authorMartin Liska <mliska@suse.cz>
Mon, 13 Feb 2017 13:13:21 +0000 (14:13 +0100)
committerMartin Liska <marxin@gcc.gnu.org>
Mon, 13 Feb 2017 13:13:21 +0000 (13:13 +0000)
2017-02-13  Martin Liska  <mliska@suse.cz>

PR c/79471
* calls.c (expand_call): Replace XALLOCAVEC with XCNEWVEC.

From-SVN: r245385

gcc/ChangeLog
gcc/calls.c

index 7ba091e8367156d9966b3c41c6f75c2c7bddbab9..19c9e010d7cf220b400c506b58192b250e28a2ac 100644 (file)
@@ -1,3 +1,8 @@
+2017-02-13  Martin Liska  <mliska@suse.cz>
+
+       PR c/79471
+       * calls.c (expand_call): Replace XALLOCAVEC with XCNEWVEC.
+
 2017-02-13  Richard Biener  <rguenther@suse.de>
 
        * configure.ac (HAVE_ISL_OPTIONS_SET_SCHEDULE_SERIALIZE_SCCS):
index 7b45b9a111dde7391f4aa31088f76baa30ea91ee..6d5ef4e02a01cf37b41b6d78b66950127f5f0faf 100644 (file)
@@ -3262,8 +3262,7 @@ expand_call (tree exp, rtx target, int ignore)
     n_named_args = num_actuals;
 
   /* Make a vector to hold all the information about each arg.  */
-  args = XALLOCAVEC (struct arg_data, num_actuals);
-  memset (args, 0, num_actuals * sizeof (struct arg_data));
+  args = XCNEWVEC (struct arg_data, num_actuals);
 
   /* Build up entries in the ARGS array, compute the size of the
      arguments into ARGS_SIZE, etc.  */
@@ -4265,6 +4264,7 @@ expand_call (tree exp, rtx target, int ignore)
   currently_expanding_call--;
 
   free (stack_usage_map_buf);
+  free (args);
 
   /* Join result with returned bounds so caller may use them if needed.  */
   target = chkp_join_splitted_slot (target, valbnd);