From 01b858ef131d05c134993ef3162639fff3d873a0 Mon Sep 17 00:00:00 2001 From: steve Date: Thu, 3 Jul 2003 17:44:10 +0000 Subject: [PATCH] Wider thread vector limit. --- tgt-vvp/vector.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tgt-vvp/vector.c b/tgt-vvp/vector.c index 7e130b801..aea984087 100644 --- a/tgt-vvp/vector.c +++ b/tgt-vvp/vector.c @@ -16,7 +16,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ #ifdef HAVE_CVS_IDENT -#ident "$Id: vector.c,v 1.3 2003/06/17 19:17:42 steve Exp $" +#ident "$Id: vector.c,v 1.4 2003/07/03 17:44:10 steve Exp $" #endif # include "vvp_priv.h" @@ -27,7 +27,7 @@ * wider operatons will need to be partitioned. For example * shift operations on WIDE (say > 64k bit) registers. */ -#define MAX_VEC (128*1024) +#define MAX_VEC (256*1024) static struct allocation_score_s { ivl_expr_t exp; @@ -211,6 +211,9 @@ unsigned allocate_vector_exp(ivl_expr_t exp, unsigned wid) /* * $Log: vector.c,v $ + * Revision 1.4 2003/07/03 17:44:10 steve + * Wider thread vector limit. + * * Revision 1.3 2003/06/17 19:17:42 steve * Remove short int restrictions from vvp opcodes. *