diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-10-04 06:14:10 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-10-04 06:14:10 +0000 |
commit | 6ab01be1b10fb2a7d398f2c0598a3bb0924fed5e (patch) | |
tree | efd0274a92c31da3aa85dd7af5b11cbfcf1fa4c6 /gcc/ggc-none.c | |
parent | 099c2ab709141e60c5131d958bbf9ee5acd286c0 (diff) | |
download | gcc-6ab01be1b10fb2a7d398f2c0598a3bb0924fed5e.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@29793 138bc75d-0d04-0410-961f-82ee72b054a4
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 6551e59a3ac..d567c8b3fde 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); |