aboutsummaryrefslogtreecommitdiff
path: root/Analysis/LiveVariables.cpp
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2008-01-11 00:40:29 +0000
committerTed Kremenek <kremenek@apple.com>2008-01-11 00:40:29 +0000
commit83c01da96f57cf732a5da9a83e2981241f205dc4 (patch)
treeccc2753d494c98e24b017ad38db0f72fd0f80e20 /Analysis/LiveVariables.cpp
parent80aeaa20837165713520bc6304e376c8eb606c93 (diff)
Renamed ProgramEdge to ProgramPoint and changed subclasses of ProgramEdge
to have a much simpler, cleaner interpretation of what is a "location" in a function (as encoded by a CFG). git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@45846 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Analysis/LiveVariables.cpp')
-rw-r--r--Analysis/LiveVariables.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Analysis/LiveVariables.cpp b/Analysis/LiveVariables.cpp
index 92186537c7..5634c3c966 100644
--- a/Analysis/LiveVariables.cpp
+++ b/Analysis/LiveVariables.cpp
@@ -172,7 +172,7 @@ typedef DataflowSolver<LiveVariables,TransferFuncs,Merge> Solver;
// External interface to run Liveness analysis.
//===----------------------------------------------------------------------===//
-void LiveVariables::runOnCFG(const CFG& cfg) {
+void LiveVariables::runOnCFG(CFG& cfg) {
Solver S(*this);
S.runOnCFG(cfg);
}