This revision was landed with ongoing or failed builds. This revision was automatically updated to reflect the committed changes. Closed by commit rGb2c8bcbab8a4: Fix "control reaches end of non-void function" warnings on ppc64le (authored by zhaomo, committed by ymandel).
Changed prior to commit: https://reviews.llvm.org/D103565?vs=349407&id=349437#toc Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D103565/new/ https://reviews.llvm.org/D103565 Files: clang/lib/ASTMatchers/GtestMatchers.cpp Index: clang/lib/ASTMatchers/GtestMatchers.cpp =================================================================== --- clang/lib/ASTMatchers/GtestMatchers.cpp +++ clang/lib/ASTMatchers/GtestMatchers.cpp @@ -53,6 +53,7 @@ case GtestCmp::Lt: return functionDecl(hasName("::testing::internal::CmpHelperLT")); } + llvm_unreachable("Unhandled GtestCmp enum"); } static llvm::StringRef getMacroTypeName(MacroType Macro) { @@ -64,6 +65,7 @@ case MacroType::On: return "ON"; } + llvm_unreachable("Unhandled MacroType enum"); } static llvm::StringRef getComparisonTypeName(GtestCmp Cmp) { @@ -81,6 +83,7 @@ case GtestCmp::Lt: return "LT"; } + llvm_unreachable("Unhandled GtestCmp enum"); } static std::string getMacroName(MacroType Macro, GtestCmp Cmp) { @@ -104,6 +107,7 @@ default: llvm_unreachable("Unhandled MacroType enum"); } + llvm_unreachable("Unhandled MacroType enum"); } // In general, AST matchers cannot match calls to macros. However, we can @@ -170,6 +174,7 @@ hasOverloadedOperatorName("()"), argumentCountIs(3), hasArgument(0, ignoringImplicit(MockCall)))))); } + llvm_unreachable("Unhandled MockArgs enum"); } static internal::BindableMatcher<Stmt>
Index: clang/lib/ASTMatchers/GtestMatchers.cpp =================================================================== --- clang/lib/ASTMatchers/GtestMatchers.cpp +++ clang/lib/ASTMatchers/GtestMatchers.cpp @@ -53,6 +53,7 @@ case GtestCmp::Lt: return functionDecl(hasName("::testing::internal::CmpHelperLT")); } + llvm_unreachable("Unhandled GtestCmp enum"); } static llvm::StringRef getMacroTypeName(MacroType Macro) { @@ -64,6 +65,7 @@ case MacroType::On: return "ON"; } + llvm_unreachable("Unhandled MacroType enum"); } static llvm::StringRef getComparisonTypeName(GtestCmp Cmp) { @@ -81,6 +83,7 @@ case GtestCmp::Lt: return "LT"; } + llvm_unreachable("Unhandled GtestCmp enum"); } static std::string getMacroName(MacroType Macro, GtestCmp Cmp) { @@ -104,6 +107,7 @@ default: llvm_unreachable("Unhandled MacroType enum"); } + llvm_unreachable("Unhandled MacroType enum"); } // In general, AST matchers cannot match calls to macros. However, we can @@ -170,6 +174,7 @@ hasOverloadedOperatorName("()"), argumentCountIs(3), hasArgument(0, ignoringImplicit(MockCall)))))); } + llvm_unreachable("Unhandled MockArgs enum"); } static internal::BindableMatcher<Stmt>
_______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits