fix unintended assignment
This commit is contained in:
parent
ddf5ced4a7
commit
b5be429091
1 changed files with 1 additions and 1 deletions
|
@ -754,7 +754,7 @@ amatch(Addr *a, Num *tn, Ref r, Fn *fn)
|
|||
if (!req(rs, R)) {
|
||||
assert(rtype(rs) == RCon);
|
||||
c = &fn->con[rs.val];
|
||||
assert(c->type = CBits);
|
||||
assert(c->type == CBits);
|
||||
s = c->bits.i;
|
||||
}
|
||||
ri = adisp(&co, tn, ri, fn, s);
|
||||
|
|
Loading…
Add table
Reference in a new issue