The variable is only used if NOFLAGS_SUPPORT_GENCPU is not set, so GCC
emits a compiler warning about a set-but-unused variable here. Let's
use the NOWARN_UNUSED() macro to suppress the unnecessary warning in
this case.
printf("%s", outbuffer);
// generate noflags variant if needed
- int nfgenerated = 0;
+ NOWARN_UNUSED(int nfgenerated = 0);
if (using_noflags && table68k[opcode].flagdead != 0 && !disable_noflags) {
convert_to_noflags(outbuffer);
printf("%s", outbuffer);