1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-26 17:36:57 +00:00

Added 'any' to --list-opt-steps.

This commit is contained in:
Chris Cacciatore 2016-12-14 16:53:55 -08:00
parent b53206cde7
commit 66b30f0c7a

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);
}