From 0d5fb419e3eda0832ee549d7958e19bb9afaa15a Mon Sep 17 00:00:00 2001 From: Quentin Carbonneaux Date: Sat, 1 Aug 2015 15:46:09 -0400 Subject: avoid keyword clash by using cons for constants --- lisc/parse.c | 46 +++++++++++++++++++++++----------------------- 1 file changed, 23 insertions(+), 23 deletions(-) (limited to 'lisc/parse.c') diff --git a/lisc/parse.c b/lisc/parse.c index befc418..731b51f 100644 --- a/lisc/parse.c +++ b/lisc/parse.c @@ -5,7 +5,7 @@ enum { NSym = 256, - NCst = 256, + NCons = 256, }; Ins insb[NIns], *curi; @@ -84,9 +84,9 @@ static Sym sym[NSym] = { [R14] = { .type = SReg, .name = "r14" }, [R15] = { .type = SReg, .name = "r15" }, }; -static Const cst[NCst]; +static Cons cons[NCons]; static int ntmp; -static int ncst; +static int ncons; static Phi **plink; static Blk *bmap[NBlk+1]; static Blk *curb; @@ -273,29 +273,29 @@ varref(char *v) static Ref parseref() { - Const c; + Cons c; int i; switch (next()) { case TVar: return varref(tokval.str); case TNum: - c = (Const){.type = CNum, .val = tokval.num}; + c = (Cons){.type = CNum, .val = tokval.num}; strcpy(c.label, ""); if (0) { case TAddr: - c = (Const){.type = CAddr, .val = 0}; + c = (Cons){.type = CAddr, .val = 0}; strcpy(c.label, tokval.str); } - for (i=0; i= NCst) + for (i=0; i= NCons) err("too many constants"); - cst[i] = c; - return CONST(i); + cons[i] = c; + return CONS(i); default: return R; } @@ -498,7 +498,7 @@ parsefn(FILE *f) for (i=Tmp0; isym = alloc(ntmp * sizeof sym[0]); memcpy(fn->sym, sym, ntmp * sizeof sym[0]); - fn->cst = alloc(ncst * sizeof cst[0]); - memcpy(fn->cst, cst, ncst * sizeof cst[0]); + fn->cons = alloc(ncons * sizeof cons[0]); + memcpy(fn->cons, cons, ncons * sizeof cons[0]); fn->ntmp = ntmp; fn->nblk = nblk; fn->rpo = 0; @@ -540,15 +540,15 @@ printref(Ref r, Fn *fn, FILE *f) break; } break; - case RConst: - switch (fn->cst[r.val].type) { + case RCons: + switch (fn->cons[r.val].type) { case CAddr: - fprintf(f, "$%s", fn->cst[r.val].label); - if (fn->cst[r.val].val) - fprintf(f, "%+"PRIi64, fn->cst[r.val].val); + fprintf(f, "$%s", fn->cons[r.val].label); + if (fn->cons[r.val].val) + fprintf(f, "%+"PRIi64, fn->cons[r.val].val); break; case CNum: - fprintf(f, "%"PRIi64, fn->cst[r.val].val); + fprintf(f, "%"PRIi64, fn->cons[r.val].val); break; case CUndef: diag("printref: invalid constant"); -- cgit 1.4.1