diff options
Diffstat (limited to 'utils/5c/peep.c')
| -rw-r--r-- | utils/5c/peep.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/utils/5c/peep.c b/utils/5c/peep.c index 25e5a118..9d4a2da2 100644 --- a/utils/5c/peep.c +++ b/utils/5c/peep.c @@ -1069,7 +1069,7 @@ copyu(Prog *p, Adr *v, Adr *s) if(v->type == D_REG) { if(v->reg <= REGEXT && v->reg > exregoffset) return 2; - if(v->reg == REGARG) + if(v->reg == (uchar)REGARG) return 2; } if(v->type == D_FREG) @@ -1087,11 +1087,10 @@ copyu(Prog *p, Adr *v, Adr *s) case ATEXT: /* funny */ if(v->type == D_REG) - if(v->reg == REGARG) + if(v->reg == (uchar)REGARG) return 3; return 0; } - /* not reached */ } int |
