From 7fadcacc2672d739fb8f9f6431350e571bf65820 Mon Sep 17 00:00:00 2001 From: ceriel Date: Tue, 27 Jun 1989 16:26:02 +0000 Subject: [PATCH] fixed bug: the assembler suppressed a relocation record because it thought it was RELPC. It was not --- mach/z80/as/mach5.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 { -- 2.34.1