X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=src%2FSDCCicode.h;h=a7534ecca0151ab617cff4f1c51c7efb23d673ce;hb=752015004fca7a847d2b76d48dc5a96f5eba72ec;hp=5b6f38754342559ab31f1175cf5267d1a258a18d;hpb=c5c44ece0e87336e2e7bef6e5f556f966e6adb27;p=fw%2Fsdcc diff --git a/src/SDCCicode.h b/src/SDCCicode.h index 5b6f3875..a7534ecc 100644 --- a/src/SDCCicode.h +++ b/src/SDCCicode.h @@ -68,6 +68,7 @@ OPTYPE; #define OP_SYMBOL(op) op->operand.symOperand #define OP_SYM_TYPE(op) op->operand.symOperand->type #define OP_SYM_ETYPE(op) op->operand.symOperand->etype +#define OP_VALUE(op) op->operand.valOperand #define SPIL_LOC(op) op->operand.symOperand->usl.spillLoc #define OP_LIVEFROM(op) op->operand.symOperand->liveFrom #define OP_LIVETO(op) op->operand.symOperand->liveTo @@ -168,7 +169,7 @@ typedef struct iCode union { symbol *label; /* for a goto statement */ - value *args; + value *args; /* for a function */ } argLabel;