From 88fce709bdf8be55338311ef33600361627f0244 Mon Sep 17 00:00:00 2001 From: kmh Date: Wed, 19 Jul 2000 14:43:25 +0000 Subject: [PATCH] fixed problem with big arrays git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@304 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- src/SDCCsymt.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/SDCCsymt.h b/src/SDCCsymt.h index edcb02cf..ad908cf9 100644 --- a/src/SDCCsymt.h +++ b/src/SDCCsymt.h @@ -136,11 +136,11 @@ typedef enum { } DECLARATOR_TYPE; typedef struct declarator { - DECLARATOR_TYPE dcl_type; /* POINTER,ARRAY or FUNCTION */ - short num_elem; /* # of elems if type==array */ - short ptr_const :1; /* pointer is constant */ - short ptr_volatile:1; /* pointer is volatile */ - struct link *tspec; /* pointer type specifier */ + DECLARATOR_TYPE dcl_type; /* POINTER,ARRAY or FUNCTION */ + unsigned int num_elem; /* # of elems if type==array */ + short ptr_const :1; /* pointer is constant */ + short ptr_volatile:1; /* pointer is volatile */ + struct link *tspec; /* pointer type specifier */ } declarator ; #define DECLARATOR 0 -- 2.30.2