[PATCH] D103565: Fix "control reaches end of non-void function" warnings on ppc64le
Yitzhak Mandelbaum via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Wed Jun 2 17:54:22 PDT 2021
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>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D103565.349437.patch
Type: text/x-patch
Size: 1256 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20210603/32481a2c/attachment.bin>
More information about the cfe-commits
mailing list