fixed bug: the assembler suppressed a relocation record because it
authorceriel <none@none>
Tue, 27 Jun 1989 16:26:02 +0000 (16:26 +0000)
committerceriel <none@none>
Tue, 27 Jun 1989 16:26:02 +0000 (16:26 +0000)
thought it was RELPC. It was not

mach/z80/as/mach5.c

index 1370855..73061d1 100644 (file)
@@ -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 {