more function pointer issues
[fw/sdcc] / src / SDCCicode.h
index a7534ecca0151ab617cff4f1c51c7efb23d673ce..f1a9d63e2b567b1e82176fdfede5bb52da38d5f6 100644 (file)
@@ -109,7 +109,7 @@ operand;
 #define IC_TRUE(x)   (x)->ulrrcnd.cnd.trueLabel
 #define IC_FALSE(x)  (x)->ulrrcnd.cnd.falseLabel
 #define IC_LABEL(x)  (x)->argLabel.label
-#define IC_ARGS(x)   (x)->argLabel.args
+// jwk #define IC_ARGS(x)   (x)->argLabel.args
 #define IC_JTCOND(x) (x)->ulrrcnd.jmpTab.condition
 #define IC_JTLABELS(x) (x)->ulrrcnd.jmpTab.labels
 #define IC_INLINE(x) (x)->inlineAsm
@@ -169,7 +169,7 @@ typedef struct iCode
     union
       {
        symbol *label;          /* for a goto statement     */
-       value *args;            /* for a function */
+       // jwk value *args;            /* for a function */
       }
     argLabel;