aboutsummaryrefslogtreecommitdiff
path: root/gcc/ggc-simple.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-simple.c
parent910eabe5013f0feaed1a493a42f3cf577cb90769 (diff)
downloadgcc-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-simple.c')
-rw-r--r--gcc/ggc-simple.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ggc-simple.c b/gcc/ggc-simple.c
index 536a06e..cb9364b 100644
--- a/gcc/ggc-simple.c
+++ b/gcc/ggc-simple.c
@@ -366,7 +366,7 @@ ggc_free_rtvec (v)
#endif
#ifdef GGC_POISON
memset (v, 0xBB, sizeof (*v) + ((GET_NUM_ELEM (&v->vec) - 1)
- * sizeof (rtunion)));
+ * sizeof (rtx)));
#endif
free (v);