[cfe-commits] r159244 - /cfe/trunk/lib/StaticAnalyzer/Core/ExprEngine.cpp
Jordan Rose
jordan_rose at apple.com
Tue Jun 26 17:51:16 PDT 2012
Author: jrose
Date: Tue Jun 26 19:51:16 2012
New Revision: 159244
URL: http://llvm.org/viewvc/llvm-project?rev=159244&view=rev
Log:
[analyzer] Remove unneeded helper function (it's in ASTContext.h)
Modified:
cfe/trunk/lib/StaticAnalyzer/Core/ExprEngine.cpp
Modified: cfe/trunk/lib/StaticAnalyzer/Core/ExprEngine.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/StaticAnalyzer/Core/ExprEngine.cpp?rev=159244&r1=159243&r2=159244&view=diff
==============================================================================
--- cfe/trunk/lib/StaticAnalyzer/Core/ExprEngine.cpp (original)
+++ cfe/trunk/lib/StaticAnalyzer/Core/ExprEngine.cpp Tue Jun 26 19:51:16 2012
@@ -52,15 +52,6 @@
"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.
//===----------------------------------------------------------------------===//
More information about the cfe-commits
mailing list