We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Example: Motorola SYSTEM V/68, Release 2, Version 1.0, VME/10 68010:
$ cc -c -O -DSYSV -DRUNOPTS -DUSEDIRENT ccpu.c "ccpu.c", line 2142: compiler error: switch table overflow
Other systems using AT&T System V SGS compiler derivatives have the same trouble (e.g. Multics C).
On these compilers, the maximum switch table size is a preprocessor defintion set at compile time, so not trivial to patch.
Possible solutions (besides updating the compiler):
#ifdef
switch
case
if
else
The text was updated successfully, but these errors were encountered:
johnsonjh
No branches or pull requests
Example: Motorola SYSTEM V/68, Release 2, Version 1.0, VME/10 68010:
$ cc -c -O -DSYSV -DRUNOPTS -DUSEDIRENT ccpu.c "ccpu.c", line 2142: compiler error: switch table overflow
Other systems using AT&T System V SGS compiler derivatives have the same trouble (e.g. Multics C).
On these compilers, the maximum switch table size is a preprocessor defintion set at compile time, so not trivial to patch.
Possible solutions (besides updating the compiler):
#ifdef
to leave out undocumented instructions.switch
/case
toif
/else
.The text was updated successfully, but these errors were encountered: