]> granicus.if.org Git - clang/commit
[analyzer] Eliminate InterExplodedGraphMap class and NodeBackMap typedef.
authorJordan Rose <jordan_rose@apple.com>
Sat, 16 Mar 2013 01:07:53 +0000 (01:07 +0000)
committerJordan Rose <jordan_rose@apple.com>
Sat, 16 Mar 2013 01:07:53 +0000 (01:07 +0000)
commitc9963132736782d0c9178c744b3e2307cfb98a08
treed9b5df7bd78b423a863590f77b839d34b04913ea
parent9a9fe4068eed2fc72ec985e5ae393fb79a8fb9ad
[analyzer] Eliminate InterExplodedGraphMap class and NodeBackMap typedef.

...in favor of this typedef:

  typedef llvm::DenseMap<const ExplodedNode *, const ExplodedNode *>
          InterExplodedGraphMap;

Use this everywhere the previous class and typedef were used.

Took the opportunity to ArrayRef-ize ExplodedGraph::trim while I'm at it.

No functionality change.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@177215 91177308-0d34-0410-b5e6-96231b3b80d8
include/clang/StaticAnalyzer/Core/PathSensitive/ExplodedGraph.h
include/clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h
lib/StaticAnalyzer/Core/BugReporter.cpp
lib/StaticAnalyzer/Core/ExplodedGraph.cpp
lib/StaticAnalyzer/Core/ExprEngine.cpp