Fix a subtle thinko which was causing bits 2-3 of jump targets to be reset.

This commit is contained in:
David Given 2018-09-11 23:16:30 +02:00
parent b81e060372
commit 8230ec42ac

View file

@ -174,7 +174,7 @@ abs26
serror("jump targets must be 4-aligned");
newrelo($1.typ, RELOMIPS | FIXUPFLAGS);
$$ = (target >> 2) & 0x03fffffd;
$$ = (target >> 2) & 0x03ffffff;
}
;