1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 23:29:39 +00:00

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
commit 5a39dfd56c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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