From: ceriel Date: Tue, 27 Jun 1989 16:26:02 +0000 (+0000) Subject: fixed bug: the assembler suppressed a relocation record because it X-Git-Tag: release-5-5~2359 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=7fadcacc2672d739fb8f9f6431350e571bf65820;p=ack.git fixed bug: the assembler suppressed a relocation record because it thought it was RELPC. It was not --- diff --git a/mach/z80/as/mach5.c b/mach/z80/as/mach5.c index 13708551d..73061d15a 100644 --- a/mach/z80/as/mach5.c +++ b/mach/z80/as/mach5.c @@ -52,7 +52,7 @@ branch(opc,exp) register opc; expr_t exp; { emit1(opc); if (sm == 0) { #ifdef RELOCATION - newrelo(exp.typ, RELPC | RELO2); + newrelo(exp.typ, RELO2); #endif emit2(exp.val); } else {