aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Analysis/AnalysisContext.h
diff options
context:
space:
mode:
authorAnders Carlsson <andersca@mac.com>2011-01-16 22:05:23 +0000
committerAnders Carlsson <andersca@mac.com>2011-01-16 22:05:23 +0000
commit04eeba43040969c05cfcb563195ef5b199297b62 (patch)
treeadb8cd8a375ff447449b05455c8f8134bf32b6c5 /include/clang/Analysis/AnalysisContext.h
parente7108aba9b2428f141ee922179ee4aeafc0ca5d1 (diff)
Add AnalysisContext::dumpCFG.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@123602 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Analysis/AnalysisContext.h')
-rw-r--r--include/clang/Analysis/AnalysisContext.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/clang/Analysis/AnalysisContext.h b/include/clang/Analysis/AnalysisContext.h
index 42a5e9f848..2ecbfdc6bf 100644
--- a/include/clang/Analysis/AnalysisContext.h
+++ b/include/clang/Analysis/AnalysisContext.h
@@ -91,10 +91,12 @@ public:
Stmt *getBody();
CFG *getCFG();
-
+
/// Return a version of the CFG without any edges pruned.
CFG *getUnoptimizedCFG();
+ void dumpCFG();
+
ParentMap &getParentMap();
PseudoConstantAnalysis *getPseudoConstantAnalysis();
LiveVariables *getLiveVariables();