diff options
author | Jeffrey A Law <law@cygnus.com> | 1999-10-04 06:14:10 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1999-10-04 00:14:10 -0600 |
commit | 88deedb5c9036cbd6fb664cd96ab8bc4d4af5fdc (patch) | |
tree | efd0274a92c31da3aa85dd7af5b11cbfcf1fa4c6 /gcc/ggc-none.c | |
parent | 910eabe5013f0feaed1a493a42f3cf577cb90769 (diff) | |
download | gcc-88deedb5c9036cbd6fb664cd96ab8bc4d4af5fdc.zip gcc-88deedb5c9036cbd6fb664cd96ab8bc4d4af5fdc.tar.gz gcc-88deedb5c9036cbd6fb664cd96ab8bc4d4af5fdc.tar.bz2 |
ggc-none.c (ggc_alloc_rtvec): An rtvec is an array of rtx, not an array of rtunion.
* ggc-none.c (ggc_alloc_rtvec): An rtvec is an array of rtx,
not an array of rtunion.
* gcc-page.c (ggc_alloc_rtvec): Similarly.
* gcc-simple (ggc_free_rtvec): Similarly.
From-SVN: r29793
Diffstat (limited to 'gcc/ggc-none.c')
-rw-r--r-- | gcc/ggc-none.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ggc-none.c b/gcc/ggc-none.c index 6551e59..d567c8b 100644 --- a/gcc/ggc-none.c +++ b/gcc/ggc-none.c @@ -51,7 +51,7 @@ rtvec ggc_alloc_rtvec (nelt) int nelt; { - int size = sizeof (struct rtvec_def) + (nelt - 1) * sizeof (rtunion); + int size = sizeof (struct rtvec_def) + (nelt - 1) * sizeof (rtx); rtvec v; v = (rtvec) xmalloc (size); |