aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-ssa-operands.h
diff options
context:
space:
mode:
authorDiego Novillo <dnovillo@redhat.com>2006-12-13 17:19:29 +0000
committerDiego Novillo <dnovillo@gcc.gnu.org>2006-12-13 12:19:29 -0500
commit018264d9c0aff58a054914a45159d558656a733a (patch)
tree861f5085ed58f23845ce42323a86fbc232aabde2 /gcc/tree-ssa-operands.h
parent0f98ca0a356308694944cc1204210d0336316584 (diff)
downloadgcc-018264d9c0aff58a054914a45159d558656a733a.zip
gcc-018264d9c0aff58a054914a45159d558656a733a.tar.gz
gcc-018264d9c0aff58a054914a45159d558656a733a.tar.bz2
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
Diffstat (limited to 'gcc/tree-ssa-operands.h')
-rw-r--r--gcc/tree-ssa-operands.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-ssa-operands.h b/gcc/tree-ssa-operands.h
index f81e629..1bcbe95 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")))
{