From 37259d0a9c97d6feb2864b8b6e0023f7854afb71 Mon Sep 17 00:00:00 2001 From: dnovillo Date: Wed, 13 Dec 2006 17:19:29 +0000 Subject: [PATCH] * tree-ssa-operands.h (SSA_OPERAND_MEMORY_SIZE): Add space to accomodate 511 operands. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@119835 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ChangeLog | 5 +++++ gcc/tree-ssa-operands.h | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 64358197b3c2..de8507c4d267 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2006-12-13 Diego Novillo + + * tree-ssa-operands.h (SSA_OPERAND_MEMORY_SIZE): Add space to + accomodate 511 operands. + 2006-12-13 Richard Guenther * builtins.c (expand_builtin_cexpi): Fix typo. diff --git a/gcc/tree-ssa-operands.h b/gcc/tree-ssa-operands.h index f81e629741fc..1bcbe952e69b 100644 --- a/gcc/tree-ssa-operands.h +++ b/gcc/tree-ssa-operands.h @@ -116,7 +116,7 @@ struct vuse_optype_d typedef struct vuse_optype_d *vuse_optype_p; -#define SSA_OPERAND_MEMORY_SIZE (2048 - sizeof (void *)) +#define SSA_OPERAND_MEMORY_SIZE (511 * sizeof (struct vuse_optype_d)) struct ssa_operand_memory_d GTY((chain_next("%h.next"))) { -- 2.47.3