OSDN Git Service

* ggc-none.c (ggc_alloc_rtvec): An rtvec is an array of rtx,
[pf3gnuchains/gcc-fork.git] / gcc / ggc-none.c
index 6551e59..d567c8b 100644 (file)
@@ -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);