"Joel E. Denny" <[EMAIL PROTECTED]> writes: > it seems that we need a band-aid that will at least stop the > bleeding we've actually *seen* so far.
How about if we dump YYUSE entirely? We can put __attribute__ ((__unused__)) after any declaration that might be unused, and /*ARGSUSEDn*/ before any function that might not use one of its arguments whose number is n or less. Perhaps it'd be easier to read if we did this: #define YYUNUSED __attribute__ ((__unused__))
