diff options
author | Ted Kremenek <kremenek@apple.com> | 2007-12-21 23:23:12 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2007-12-21 23:23:12 +0000 |
commit | 30f790afe175c3d5dba7acd8bb31997da8773add (patch) | |
tree | 5c3bbcafc9d76719374363bf0e72b6ffa04f2477 | |
parent | 0b506a11425daafe85ada555dd37da2d9fea76f0 (diff) |
Converted Loc back to being of type ProgramEdge. Ultimately I believe we want
the ability to refer to the vertex set for all the vertices associated with an
edge. This will allow some nice queries over the graph, and (hopefully) will
reduce the memory footprint of SimulVertex.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@45299 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/Analysis/PathSensitive/SimulVertex.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Analysis/PathSensitive/SimulVertex.h b/include/clang/Analysis/PathSensitive/SimulVertex.h index 2ea7a454be..698f8a0925 100644 --- a/include/clang/Analysis/PathSensitive/SimulVertex.h +++ b/include/clang/Analysis/PathSensitive/SimulVertex.h @@ -32,7 +32,7 @@ class SimulVertex : public FoldingSetNode { /// Location - The program edge representing the location in the function body /// that this vertex corresponds to. - const ProgramEdge& Location; + const ProgramEdge Location; /// State - The state associated with this vertex. Normally this value /// is immutable, but we anticipate there will be times when algorithms |