From: Joe Perches Date: Sat, 5 Oct 2019 16:46:42 +0000 (-0700) Subject: compiler_attributes.h: Add 'fallthrough' pseudo keyword for switch/case use X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=294f69e662d1;p=linux.git compiler_attributes.h: Add 'fallthrough' pseudo keyword for switch/case use Reserve the pseudo keyword 'fallthrough' for the ability to convert the various case block /* fallthrough */ style comments to appear to be an actual reserved word with the same gcc case block missing fallthrough warning capability. All switch/case blocks now should end in one of: break; fallthrough; goto