summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Pilgrim <llvm-dev@redking.me.uk>2018-08-01 10:26:04 +0000
committerSimon Pilgrim <llvm-dev@redking.me.uk>2018-08-01 10:26:04 +0000
commit57a69c56f4838b894876f2547d508b2f0e2528d2 (patch)
tree1954a327cca4c66451af240d23d8550d61efd50d
parentc57078a9671d1287f36580cdfc0d3c2776d3af7a (diff)
Replace 'FALL-THROUGH' comment with LLVM_FALLTHROUGH to silence warning. NFCI.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@338508 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/StaticAnalyzer/Core/ExprEngineCXX.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp b/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp
index 30d1e2413d..107b958193 100644
--- a/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp
+++ b/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp
@@ -253,7 +253,7 @@ std::pair<ProgramStateRef, SVal> ExprEngine::prepareForObjectConstruction(
State = PreElideState;
CallOpts = PreElideCallOpts;
}
- // FALL-THROUGH
+ LLVM_FALLTHROUGH
}
case ConstructionContext::SimpleTemporaryObjectKind: {
const auto *TCC = cast<TemporaryObjectConstructionContext>(CC);