X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=src%2Fcc65%2Fcodeopt.h;h=4ee2626aae0b752941de5b432d70962015bd671e;hb=b821c2c8ae74aca5346429344034f3c5200e5570;hp=4edacb11ba96a75c4b46bba9e777f40f3e992740;hpb=c71a80b0afd9a035dd0aab156bf1931c6aaef7fa;p=cc65 diff --git a/src/cc65/codeopt.h b/src/cc65/codeopt.h index 4edacb11b..4ee2626aa 100644 --- a/src/cc65/codeopt.h +++ b/src/cc65/codeopt.h @@ -38,22 +38,25 @@ -/* b6502 */ +/* cc65 */ #include "codeseg.h" /*****************************************************************************/ -/* Data */ +/* Code */ /*****************************************************************************/ -/*****************************************************************************/ -/* Code */ -/*****************************************************************************/ +void DisableOpt (const char* Name); +/* Disable the optimization with the given name */ +void EnableOpt (const char* Name); +/* Enable the optimization with the given name */ +void ListOptSteps (FILE* F); +/* List all optimization steps */ void RunOpt (CodeSeg* S); /* Run the optimizer */