1
0
mirror of https://github.com/cc65/cc65.git synced 2025-08-10 20:25:20 +00:00

Merge pull request #360 from cacciatc/master

Added 'any' to --list-opt-steps.
This commit is contained in:
Oliver Schmidt
2016-12-15 22:53:08 +01:00
committed by GitHub

View File

@@ -911,6 +911,8 @@ void ListOptSteps (FILE* F)
/* List all optimization steps */
{
unsigned I;
fprintf (F, "any\n");
for (I = 0; I < OPTFUNC_COUNT; ++I) {
fprintf (F, "%s\n", OptFuncs[I]->Name);
}