Merge pull request #570 from prandeamus/compiler-optimizer-check

Complain if unsupported flags are provided after -O
This commit is contained in:
Oliver Schmidt
2018-01-10 12:21:09 +00:00
committed by GitHub

View File

@@ -986,6 +986,9 @@ int main (int argc, char* argv[])
case 's':
IS_Set (&InlineStdFuncs, 1);
break;
default:
UnknownOption (Arg);
break;
}
}
break;