code cleaned a little bit too much ;-)
[fw/sdcc] / src / SDCCpeeph.h
index 4fa53a59042c69c45b3d94f9e40806b92fa2d450..8ada22285ce4353626d5a48a7d90135df1b4276a 100644 (file)
 
 #define MAX_PATTERN_LEN 128
 
+struct asmLineNode;    /* defined in each port */
+struct lineNode;
+
 typedef struct lineNode
   {
     char *line;
+    iCode *ic;
     unsigned int isInline:1;
     unsigned int isComment:1;
     unsigned int isDebug:1;
+    struct asmLineNode *aln;
     struct lineNode *prev;
     struct lineNode *next;
   }