scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

commit 91a0507694fcf788e855f09aa2f96338957e3725
parent 02672388492fd5825c59b3579b62b892135a3ac2
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Mon, 18 Dec 2017 08:13:10 +0100

[as-i386] Correct signess of p in match()

warning: comparison of constant 'AREP' (128) with expression of type
         'char' is always true

Diffstat:
Mas/target/i386/proc.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/as/target/i386/proc.c b/as/target/i386/proc.c @@ -101,7 +101,7 @@ iarch(void) int match(Op *op, Node **args) { - char *p; + unsigned char *p; int a, olda; if (!op->args)