From 66b30f0c7aefade9dca49b7fadf746d9a0594f8c Mon Sep 17 00:00:00 2001 From: Chris Cacciatore Date: Wed, 14 Dec 2016 16:53:55 -0800 Subject: [PATCH] Added 'any' to --list-opt-steps. --- src/cc65/codeopt.c | 2 ++ 1 file changed, 2 insertions(+) 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); }