From: Steven Bosscher Date: Mon, 13 Aug 2012 21:08:57 +0000 (+0000) Subject: Fix patch merge error in previous commit. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0fc4dd09a8a9393c05c724178ed6a48b6953ff00;p=gcc.git Fix patch merge error in previous commit. From-SVN: r190360 --- diff --git a/gcc/tree-ssa-loop-manip.c b/gcc/tree-ssa-loop-manip.c index 98846138e7c..31d4a6c7c9f 100644 --- a/gcc/tree-ssa-loop-manip.c +++ b/gcc/tree-ssa-loop-manip.c @@ -392,7 +392,7 @@ rewrite_into_loop_closed_ssa (bitmap changed_bbs, unsigned update_flag) /* Uses of names to rename. We don't have to initialize this array, because we know that we will only have entries for the SSA names in NAMES_TO_RENAME. */ - use_blocks = XCNEWVEC (bitmap, num_ssa_names); + use_blocks = XNEWVEC (bitmap, num_ssa_names); /* Find the uses outside loops. */ find_uses_to_rename (changed_bbs, use_blocks, names_to_rename);