Introduced DPTR use - now DPTR will allocated to liveRanges much more
[fw/sdcc] / src / SDCCsymt.h
index 6ff6e0a72addecde9906c0d4dd7fe5f953c11a28..eacd5c3fb433a3609fa870a70b39bf0de4276d08 100644 (file)
@@ -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;
 
@@ -469,7 +470,7 @@ void addSymChain (symbol *);
 sym_link *structElemType (sym_link *, value *);
 symbol *getStructElement (structdef *, symbol *);
 sym_link *computeType (sym_link *, sym_link *);
-void processFuncArgs (symbol *, int);
+void processFuncArgs (symbol *);
 int isSymbolEqual (symbol *, symbol *);
 int powof2 (unsigned long);
 void printTypeChain (sym_link *, FILE *);