]> Shamusworld >> Repos - rmac/blobdiff - rmac.c
Addresses issue #185 - all optimisations off by default
[rmac] / rmac.c
diff --git a/rmac.c b/rmac.c
index 0e070526bbb4c3f18bd583a92a696935bd0db34b..b808f7560865d03d69194310fc7f6a6a5f762317 100644 (file)
--- a/rmac.c
+++ b/rmac.c
@@ -775,11 +775,8 @@ int main(int argc, char ** argv)
        perm_verb_flag = 0;                             // Clobber "permanent" verbose flag
        legacy_flag = 1;                                // Default is legacy mode on (:-P)
 
-       // Set legacy optimisation flags to on and everything else to off
+       // Set all optimisation flags to off
        memset(optim_flags, 0, OPT_COUNT * sizeof(int));
-       optim_flags[OPT_ABS_SHORT] =
-               optim_flags[OPT_MOVEL_MOVEQ] =
-               optim_flags[OPT_BSR_BCC_S] = 1;
 
        cmdlnexec = argv[0];                    // Obtain executable name
        endian = GetEndianess();                // Get processor endianess