diff options
author | Ted Kremenek <kremenek@apple.com> | 2011-08-20 05:59:58 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2011-08-20 05:59:58 +0000 |
commit | 5f7643150411b16e71bc012c6ceb2d865c0a34d4 (patch) | |
tree | a5c50c274736ff2d28b5bf5499924ca7e812cd5d /lib/StaticAnalyzer | |
parent | 3526e47a4a1c668374fb5ce79d62a8d39bb43d73 (diff) |
Rename CXXExprEngine.cpp to ExprEngineCXX.cpp.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@138193 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/StaticAnalyzer')
-rw-r--r-- | lib/StaticAnalyzer/Core/CMakeLists.txt | 2 | ||||
-rw-r--r-- | lib/StaticAnalyzer/Core/ExprEngineCXX.cpp (renamed from lib/StaticAnalyzer/Core/CXXExprEngine.cpp) | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/StaticAnalyzer/Core/CMakeLists.txt b/lib/StaticAnalyzer/Core/CMakeLists.txt index 5b31d33976..0d0be06bc1 100644 --- a/lib/StaticAnalyzer/Core/CMakeLists.txt +++ b/lib/StaticAnalyzer/Core/CMakeLists.txt @@ -11,7 +11,6 @@ add_clang_library(clangStaticAnalyzerCore BugReporter.cpp BugReporterVisitors.cpp CFRefCount.cpp - CXXExprEngine.cpp Checker.cpp CheckerContext.cpp CheckerHelpers.cpp @@ -21,6 +20,7 @@ add_clang_library(clangStaticAnalyzerCore Environment.cpp ExplodedGraph.cpp ExprEngine.cpp + ExprEngineCXX.cpp HTMLDiagnostics.cpp MemRegion.cpp ObjCMessage.cpp diff --git a/lib/StaticAnalyzer/Core/CXXExprEngine.cpp b/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp index 4a90f77cf3..d34afbad72 100644 --- a/lib/StaticAnalyzer/Core/CXXExprEngine.cpp +++ b/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp @@ -1,4 +1,4 @@ -//===- GRCXXExprEngine.cpp - C++ expr evaluation engine ---------*- C++ -*-===// +//===- ExprEngineCXX.cpp - ExprEngine support for C++ -----------*- C++ -*-===// // // The LLVM Compiler Infrastructure // |