]> git.sur5r.net Git - cc65/commitdiff
Added 'any' to --list-opt-steps. 360/head
authorChris Cacciatore <chris.cacciatore@gmail.com>
Thu, 15 Dec 2016 00:53:55 +0000 (16:53 -0800)
committerChris Cacciatore <chris.cacciatore@gmail.com>
Thu, 15 Dec 2016 17:06:15 +0000 (09:06 -0800)
src/cc65/codeopt.c

index 9eb17510504634eafd85d5d657b2929da52acfe9..e44bf2bf5590976edc1afe29ed3c09e4ed3f4ccc 100644 (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);
     }