diff options
author | Jordan Rose <jordan_rose@apple.com> | 2012-06-27 00:51:16 +0000 |
---|---|---|
committer | Jordan Rose <jordan_rose@apple.com> | 2012-06-27 00:51:16 +0000 |
commit | 4715ed95e3e710db097bfdd9a38b67bd7e86aced (patch) | |
tree | 9e91415cc986f6345a653916cfc11c7f88d61cca | |
parent | 8decdee5fd87190b52e65cef500c81547ae6485b (diff) |
[analyzer] Remove unneeded helper function (it's in ASTContext.h)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@159244 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/StaticAnalyzer/Core/ExprEngine.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/lib/StaticAnalyzer/Core/ExprEngine.cpp b/lib/StaticAnalyzer/Core/ExprEngine.cpp index e150fee8d5..a206a1a2fb 100644 --- a/lib/StaticAnalyzer/Core/ExprEngine.cpp +++ b/lib/StaticAnalyzer/Core/ExprEngine.cpp @@ -52,15 +52,6 @@ STATISTIC(NumTimesRetriedWithoutInlining, "The # of times we re-evaluated a call without inlining"); //===----------------------------------------------------------------------===// -// Utility functions. -//===----------------------------------------------------------------------===// - -static inline Selector GetNullarySelector(const char* name, ASTContext &Ctx) { - IdentifierInfo* II = &Ctx.Idents.get(name); - return Ctx.Selectors.getSelector(0, &II); -} - -//===----------------------------------------------------------------------===// // Engine construction and deletion. //===----------------------------------------------------------------------===// |