aboutsummaryrefslogtreecommitdiff
path: root/gcc/ggc-none.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/ggc-none.c')
-rw-r--r--gcc/ggc-none.c2
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);