We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ee7567 commit 06407c5Copy full SHA for 06407c5
clang/lib/StaticAnalyzer/Checkers/WebKit/PtrTypesSemantics.cpp
@@ -425,7 +425,7 @@ bool isPtrConversion(const FunctionDecl *F) {
425
}
426
427
bool isTrivialBuiltinFunction(const FunctionDecl *F) {
428
- if (!F)
+ if (!F || !F->getDeclName().isIdentifier())
429
return false;
430
auto Name = F->getName();
431
return Name.starts_with("__builtin") || Name == "__libcpp_verbose_abort" ||
0 commit comments