From bf103ec201124f0e3179d4de04002c3f25c5832a Mon Sep 17 00:00:00 2001 From: "J\"orn Rennecke" Date: Tue, 7 Nov 2000 06:36:12 +0000 Subject: combine.c (recog_for_combine): Allocate uninitialized vector with rtvec_alloc. * combine.c (recog_for_combine): Allocate uninitialized vector with rtvec_alloc. * recog.c (apply_change_group): Likewise. From-SVN: r37285 --- gcc/combine.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'gcc/combine.c') diff --git a/gcc/combine.c b/gcc/combine.c index 33de90c..7005367 100644 --- a/gcc/combine.c +++ b/gcc/combine.c @@ -9680,10 +9680,10 @@ recog_for_combine (pnewpat, insn, pnotes) if (num_clobbers_to_add) { rtx newpat = gen_rtx_PARALLEL (VOIDmode, - gen_rtvec (GET_CODE (pat) == PARALLEL - ? (XVECLEN (pat, 0) - + num_clobbers_to_add) - : num_clobbers_to_add + 1)); + rtvec_alloc (GET_CODE (pat) == PARALLEL + ? (XVECLEN (pat, 0) + + num_clobbers_to_add) + : num_clobbers_to_add + 1)); if (GET_CODE (pat) == PARALLEL) for (i = 0; i < XVECLEN (pat, 0); i++) -- cgit v1.1