1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-08 15:29:37 +00:00

Complain if unsupported flags are provided after -O

This commit is contained in:
prandeamus 2018-01-07 18:57:48 +00:00
parent 1ea5889a87
commit e7aabce8e9

View File

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