diff options
author | Steven Bosscher <steven@gcc.gnu.org> | 2012-08-13 21:08:57 +0000 |
---|---|---|
committer | Steven Bosscher <steven@gcc.gnu.org> | 2012-08-13 21:08:57 +0000 |
commit | 0fc4dd09a8a9393c05c724178ed6a48b6953ff00 (patch) | |
tree | e00eda45cbe9c5fed0655ccadef3ad6f1b3c9afd /gcc/tree-ssa-loop-manip.c | |
parent | c302207e352d7372845458212fa30251ff1ae730 (diff) | |
download | gcc-0fc4dd09a8a9393c05c724178ed6a48b6953ff00.zip gcc-0fc4dd09a8a9393c05c724178ed6a48b6953ff00.tar.gz gcc-0fc4dd09a8a9393c05c724178ed6a48b6953ff00.tar.bz2 |
Fix patch merge error in previous commit.
From-SVN: r190360
Diffstat (limited to 'gcc/tree-ssa-loop-manip.c')
-rw-r--r-- | gcc/tree-ssa-loop-manip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-ssa-loop-manip.c b/gcc/tree-ssa-loop-manip.c index 9884613..31d4a6c 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); |