diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1996-11-15 14:11:57 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1996-11-15 14:11:57 -0500 |
commit | 2710836960b0a77830d03d3c0f254199dae0a724 (patch) | |
tree | 08088c8498eb5782a3ca9398d765859b1ba4cfa3 /gcc/integrate.c | |
parent | da3a3ba6bcc8da9f3d39f73fb96d1634c4fb063c (diff) | |
download | gcc-2710836960b0a77830d03d3c0f254199dae0a724.zip gcc-2710836960b0a77830d03d3c0f254199dae0a724.tar.gz gcc-2710836960b0a77830d03d3c0f254199dae0a724.tar.bz2 |
(copy_for_inline): Call gen_rtvec_vv.
From-SVN: r13169
Diffstat (limited to 'gcc/integrate.c')
-rw-r--r-- | gcc/integrate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/integrate.c b/gcc/integrate.c index 1c5a4a7..e53bca6 100644 --- a/gcc/integrate.c +++ b/gcc/integrate.c @@ -1148,7 +1148,7 @@ copy_for_inline (orig) { register int j; - XVEC (x, i) = gen_rtvec_v (XVECLEN (x, i), &XVECEXP (x, i, 0)); + XVEC (x, i) = gen_rtvec_vv (XVECLEN (x, i), XVEC (x, i)->elem); for (j = 0; j < XVECLEN (x, i); j++) XVECEXP (x, i, j) = copy_for_inline (XVECEXP (x, i, j)); |