]> Shamusworld >> Repos - rmac/blobdiff - eagen0.c
Fix for bug #170 - ELF output module exports global,defined symbols as undefined
[rmac] / eagen0.c
index 1d94c077cf49b8d7424f9ba1b5447daca78f2642..bcddb193f64f51e76ceaaab1e0b6e3da158d0655 100644 (file)
--- a/eagen0.c
+++ b/eagen0.c
@@ -40,7 +40,7 @@ int eaNgen(WORD siz)
                        if (tdb)
                                MarkRelocatable(cursect, sloc, tdb, MWORD, NULL);
 
-                       if ((v == 0) && CHECK_OPTS(OPT_INDIRECT_DISP) && !movep)
+                       if ((v == 0) && CHECK_OPTS(OPT_OUTER_DISP) && !movep)
                        {
                                // If expr is 0, size optimise the opcode. Generally the lower
                                // 6 bits of the opcode for expr(ax) are 101rrr where rrr=the
@@ -64,7 +64,7 @@ int eaNgen(WORD siz)
                                        chptr_opcode[1] |= 0x0080 & 255;          // slap in 010 bits
                                }
 
-                               if (sbra_flag)
+                               if (optim_warn_flag)
                                        warn("0(An) converted to (An)");
 
                                return OK;
@@ -326,6 +326,12 @@ int eaNgen(WORD siz)
        case ABSL:
                if (w) // Defined
                {
+                       if (CHECK_OPTS(OPT_PC_RELATIVE))
+                       {
+                               if ((aNexattr & (DEFINED | REFERENCED | EQUATED)) == (DEFINED | REFERENCED))
+                                       return error("relocation not allowed");
+                       }
+
                        if (tdb)
                                MarkRelocatable(cursect, sloc, tdb, MLONG, NULL);