Fix a subtle thinko which was causing bits 2-3 of jump targets to be reset.
This commit is contained in:
parent
b81e060372
commit
8230ec42ac
|
@ -174,7 +174,7 @@ abs26
|
|||
serror("jump targets must be 4-aligned");
|
||||
|
||||
newrelo($1.typ, RELOMIPS | FIXUPFLAGS);
|
||||
$$ = (target >> 2) & 0x03fffffd;
|
||||
$$ = (target >> 2) & 0x03ffffff;
|
||||
}
|
||||
;
|
||||
|
||||
|
|
Loading…
Reference in a new issue