X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=src%2Fxa51%2Fgen.c;h=508d890fbb7669c4b40e458229bc78e758fc60a0;hb=90bdb43b342189fcb94a398855d43f3f47f96738;hp=f30aed63336070f666a7aa870ab154c5f8ee1d2a;hpb=5d609f8d1aef366db39770b8e9c26757b7e7622e;p=fw%2Fsdcc diff --git a/src/xa51/gen.c b/src/xa51/gen.c index f30aed63..508d890f 100755 --- a/src/xa51/gen.c +++ b/src/xa51/gen.c @@ -112,7 +112,7 @@ static void emitcode (char *inst, char *fmt,...) { else vsprintf (lb, fmt, ap); - while (isspace ((int)*lbp)) + while (isspace (*lbp)) lbp++; if (lbp && *lbp) @@ -1207,7 +1207,7 @@ static iCode *hasInc (operand *op, iCode *ic, int osize) { } } /* if the operand used or deffed */ - if (bitVectBitValue(OP_USES(op),lic->key) || (unsigned) lic->defKey == op->key) { + if (bitVectBitValue(OP_USES(op),lic->key) || lic->defKey == op->key) { return NULL; } /* if GOTO or IFX */