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
commit 4b78364b8b
1 changed files with 2 additions and 0 deletions

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