From: sandeep Date: Fri, 9 Nov 2001 20:32:55 +0000 (+0000) Subject: Added clashes (bitVect) to symbol structure X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=70638932d1bf4d7089197311070b92f2f1cdcbe7;p=fw%2Fsdcc Added clashes (bitVect) to symbol structure git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@1537 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/src/SDCCsymt.h b/src/SDCCsymt.h index 9aca2975..eacd5c3f 100644 --- a/src/SDCCsymt.h +++ b/src/SDCCsymt.h @@ -273,6 +273,7 @@ typedef struct symbol int liveTo; /* live to sequence number */ int used; /* no. of times this was used */ int recvSize; /* size of first argument */ + struct bitVect *clashes; /* overlaps with what other symbols */ } symbol;