]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
tree-ssa-operands.h (SSA_OPERAND_MEMORY_SIZE): Add space to accomodate 511 operands.
authorDiego Novillo <dnovillo@redhat.com>
Wed, 13 Dec 2006 17:19:29 +0000 (17:19 +0000)
committerDiego Novillo <dnovillo@gcc.gnu.org>
Wed, 13 Dec 2006 17:19:29 +0000 (12:19 -0500)
* tree-ssa-operands.h (SSA_OPERAND_MEMORY_SIZE): Add space to
accomodate 511 operands.

From-SVN: r119835

gcc/ChangeLog
gcc/tree-ssa-operands.h

index 64358197b3c2b0e52e6e037f69d74a0245b0bbea..de8507c4d2675d2f0b115a8a78ad55cda8adacba 100644 (file)
@@ -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.
index f81e629741fc34c76dc91bf78f81f9db6693bd65..1bcbe952e69b1b2bd70ff7c1d0cddf8b95fcb14c 100644 (file)
@@ -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")))
 {