aboutsummaryrefslogtreecommitdiff
path: root/gcc/ggc.h
diff options
context:
space:
mode:
authorLiang Wang <lwang1@marvell.com>2011-08-16 09:49:28 +0000
committerRichard Biener <rguenth@gcc.gnu.org>2011-08-16 09:49:28 +0000
commitc50584186d58165c8cd3978712b5bfc18f18fcc5 (patch)
tree5b6e4a2d06930ba52d94ba980d60d097104e2cff /gcc/ggc.h
parenta1bc7628e49249aafa3f97a63a6662a3f6227f37 (diff)
downloadgcc-c50584186d58165c8cd3978712b5bfc18f18fcc5.zip
gcc-c50584186d58165c8cd3978712b5bfc18f18fcc5.tar.gz
gcc-c50584186d58165c8cd3978712b5bfc18f18fcc5.tar.bz2
ggc.h (ggc_alloc_rtvec_sized): Change arguments of ggc_alloc_zone_vec_rtvec_def.
2011-08-16 Liang Wang <lwang1@marvell.com> * ggc.h (ggc_alloc_rtvec_sized): Change arguments of ggc_alloc_zone_vec_rtvec_def. From-SVN: r177782
Diffstat (limited to 'gcc/ggc.h')
-rw-r--r--gcc/ggc.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/ggc.h b/gcc/ggc.h
index 7f2144c..07f0dda 100644
--- a/gcc/ggc.h
+++ b/gcc/ggc.h
@@ -266,8 +266,9 @@ extern struct alloc_zone tree_zone;
extern struct alloc_zone tree_id_zone;
#define ggc_alloc_rtvec_sized(NELT) \
- (ggc_alloc_zone_vec_rtvec_def (sizeof (rtx), \
- sizeof (struct rtvec_def) + ((NELT) - 1), \
+ (ggc_alloc_zone_vec_rtvec_def (1, \
+ sizeof (struct rtvec_def) \
+ + ((NELT) - 1) * sizeof (rtx), \
&rtl_zone))
#if defined (GGC_ZONE) && !defined (GENERATOR_FILE)