* device/lib/Makefile.in: removed comment line with model-pic16,
[fw/sdcc] / src / pic16 / pcode.h
index c41ddc58c8a9967b4326a7d2583e3c84f159c758..3f8a1da3f910647a919d61eb3ac3ce70e1396306 100644 (file)
@@ -439,6 +439,9 @@ typedef struct pCodeOpWild
                           * card will be expanded */
   pCodeOp *matched;       /* When a wild matches, we'll store a pointer to the
                           * opcode we matched */
+  int id2;               /* same as id but for second wild operand */
+  pCodeOp *subtype2;     /* Poiter to the second Operand type */
+  pCodeOp *matched2;     /* same as matched but for second wil operand */
 
 } pCodeOpWild;
 
@@ -669,6 +672,8 @@ typedef struct pCodeFunction
 
   int  ncalled;    /* Number of times function is called */
 
+  int absblock;    /* hack to emulate a block pCodes in absolute position
+                      but not inside a function */
 } pCodeFunction;