summaryrefslogtreecommitdiff
path: root/gcc/ggc-page.c
diff options
context:
space:
mode:
authorJeffrey A Law <law@cygnus.com>1999-10-04 06:14:10 +0000
committerJeff Law <law@gcc.gnu.org>1999-10-04 00:14:10 -0600
commit88deedb5c9036cbd6fb664cd96ab8bc4d4af5fdc (patch)
treeefd0274a92c31da3aa85dd7af5b11cbfcf1fa4c6 /gcc/ggc-page.c
parent910eabe5013f0feaed1a493a42f3cf577cb90769 (diff)
downloadgcc-88deedb5c9036cbd6fb664cd96ab8bc4d4af5fdc.tar.gz
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-page.c')
-rw-r--r--gcc/ggc-page.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ggc-page.c b/gcc/ggc-page.c
index 226db4b7466..879f8fa776d 100644
--- a/gcc/ggc-page.c
+++ b/gcc/ggc-page.c
@@ -795,7 +795,7 @@ ggc_alloc_rtvec (nelt)
int nelt;
{
return (struct rtvec_def *)
- alloc_obj (sizeof (struct rtvec_def) + (nelt - 1) * sizeof (rtunion), 1);
+ alloc_obj (sizeof (struct rtvec_def) + (nelt - 1) * sizeof (rtx), 1);
}