diff options
author | Diego Novillo <dnovillo@redhat.com> | 2006-12-13 17:19:29 +0000 |
---|---|---|
committer | Diego Novillo <dnovillo@gcc.gnu.org> | 2006-12-13 12:19:29 -0500 |
commit | 018264d9c0aff58a054914a45159d558656a733a (patch) | |
tree | 861f5085ed58f23845ce42323a86fbc232aabde2 | |
parent | 0f98ca0a356308694944cc1204210d0336316584 (diff) | |
download | gcc-018264d9c0aff58a054914a45159d558656a733a.tar.gz |
tree-ssa-operands.h (SSA_OPERAND_MEMORY_SIZE): Add space to accomodate 511 operands.
* tree-ssa-operands.h (SSA_OPERAND_MEMORY_SIZE): Add space to
accomodate 511 operands.
From-SVN: r119835
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/tree-ssa-operands.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 64358197b3c..de8507c4d26 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2006-12-13 Diego Novillo <dnovillo@redhat.com> + + * tree-ssa-operands.h (SSA_OPERAND_MEMORY_SIZE): Add space to + accomodate 511 operands. + 2006-12-13 Richard Guenther <rguenther@suse.de> * builtins.c (expand_builtin_cexpi): Fix typo. diff --git a/gcc/tree-ssa-operands.h b/gcc/tree-ssa-operands.h index f81e629741f..1bcbe952e69 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"))) { |