From: Chris Cacciatore Date: Thu, 15 Dec 2016 00:53:55 +0000 (-0800) Subject: Added 'any' to --list-opt-steps. X-Git-Tag: V2.16~58^2 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=66b30f0c7aefade9dca49b7fadf746d9a0594f8c;p=cc65 Added 'any' to --list-opt-steps. --- diff --git a/src/cc65/codeopt.c b/src/cc65/codeopt.c index 9eb175105..e44bf2bf5 100644 --- a/src/cc65/codeopt.c +++ b/src/cc65/codeopt.c @@ -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); }