>>>>> "Jakub" == Jakub Jelinek <ja...@redhat.com> writes:
>> default: >> { >> complaint (&symfile_complaints, >> _("Storage class %d not recognized during scan"), >> sclass); >> } >> /* FALLTHROUGH */ >> >> /* C_FCN is .bf and .ef symbols. I think it is sufficient >> to handle only the C_FUN and C_EXT. */ >> case C_FCN: Jakub> Is complaint a noreturn call? Nope. Jakub> but right now we only look for such comments immediately before a Jakub> case/default keyword or user label; if there is another comment Jakub> in between, it is ignored. This is something we are considering Jakub> to change, exactly because often the /* FALLTHRU */ comment Jakub> appears after some case and then there is unrelated comment Jakub> before the next case about what that case handles. Make sense. Thanks. Tom