summaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorAdrian Prantl <aprantl@apple.com>2018-02-01 18:10:20 +0000
committerAdrian Prantl <aprantl@apple.com>2018-02-01 18:10:20 +0000
commit604238e317775b3ac1c6f1ccb0b53f404501c442 (patch)
tree41b7af578e1dde12f028041db574c3f3522e2ede /utils
parent294a4f68ffd3bfbd9cde07f3c0b37f37077c66c5 (diff)
Mark fallthrough with LLVM_FALLTHROUGH
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@323986 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r--utils/TableGen/NeonEmitter.cpp2
1 files changed, 1 insertions, 1 deletions
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;