summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorAdrian Prantl <aprantl@apple.com>2017-12-19 22:06:11 +0000
committerAdrian Prantl <aprantl@apple.com>2017-12-19 22:06:11 +0000
commit550c57454603b9f471988ab8dd098fa67be734b4 (patch)
treec29b858f4f2423d5fbcbc69eb8321f104ccd9bdc /utils
parent24f2ba0729b8b3096c58a414872a9450d51e53f5 (diff)
Silence a bunch of implicit fallthrough warnings
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@321115 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r--utils/TableGen/NeonEmitter.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/utils/TableGen/NeonEmitter.cpp b/utils/TableGen/NeonEmitter.cpp
index 49c1edce32..e63f3e1b35 100644
--- a/utils/TableGen/NeonEmitter.cpp
+++ b/utils/TableGen/NeonEmitter.cpp
@@ -773,19 +773,19 @@ void Type::applyTypespec(bool &Quad) {
break;
case 'h':
Float = true;
- // Fall through
+ LLVM_FALLTHROUGH;
case 's':
ElementBitwidth = 16;
break;
case 'f':
Float = true;
- // Fall through
+ LLVM_FALLTHROUGH;
case 'i':
ElementBitwidth = 32;
break;
case 'd':
Float = true;
- // Fall through
+ LLVM_FALLTHROUGH;
case 'l':
ElementBitwidth = 64;
break;