commit | f3b3ccda590c14513ff372bb9a26ae5d644fb0bc | [log] [tgz] |
---|---|---|
author | Adrian Prantl <aprantl@apple.com> | Tue Dec 19 22:06:11 2017 +0000 |
committer | Adrian Prantl <aprantl@apple.com> | Tue Dec 19 22:06:11 2017 +0000 |
tree | b96082db4e4367c26bd2bc54c10e8f6f42aeeaf3 | |
parent | 0e6694d111b6d3c0438f2b72fab6d10b7b4eab6c [diff] [blame] |
Silence a bunch of implicit fallthrough warnings llvm-svn: 321115
diff --git a/clang/lib/AST/Expr.cpp b/clang/lib/AST/Expr.cpp index 55061aa..7ddab93 100644 --- a/clang/lib/AST/Expr.cpp +++ b/clang/lib/AST/Expr.cpp
@@ -3116,7 +3116,8 @@ if (DCE->getTypeAsWritten()->isReferenceType() && DCE->getCastKind() == CK_Dynamic) return true; - } // Fall through. + } + LLVM_FALLTHROUGH; case ImplicitCastExprClass: case CStyleCastExprClass: case CXXStaticCastExprClass: