* printf_tiny.c: NEW,
[fw/sdcc] / src / SDCCcse.h
index 8868437882a772b9e32a2c8dc507952997ef996f..0e7c9c8ab39721b39aff805e439050d40c394e51 100644 (file)
 typedef struct cseDef
   {
 
-    unsigned int key;
+    int key;
     operand *sym;              /* defining symbol */
     iCode *diCode;             /* defining instruction */
     bitVect *ancestors;                /* keys of the symbol's ancestors */
     int fromGlobal:1;          /* defining symbol's value computed from a global */
+    int fromAddrTaken:1;       /* defining symbol's value computed from a */
+                               /*   symbol whose address was taken */
   }
 cseDef;