From: Adrian Prantl Date: Thu, 1 Feb 2018 18:10:20 +0000 (+0000) Subject: Mark fallthrough with LLVM_FALLTHROUGH X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=604238e317775b3ac1c6f1ccb0b53f404501c442;p=clang Mark fallthrough with LLVM_FALLTHROUGH git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@323986 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/TableGen/NeonEmitter.cpp b/utils/TableGen/NeonEmitter.cpp index d4ce6c7c6e..1a95ca4c66 100644 --- a/utils/TableGen/NeonEmitter.cpp +++ b/utils/TableGen/NeonEmitter.cpp @@ -948,7 +948,7 @@ void Type::applyModifier(char Mod) { break; case 'c': Constant = true; - // Fall through + LLVM_FALLTHROUGH; case 'p': Pointer = true; Bitwidth = ElementBitwidth;