diff options
author | Tobias Grosser <grosser@fim.uni-passau.de> | 2009-11-30 14:16:05 +0000 |
---|---|---|
committer | Tobias Grosser <grosser@fim.uni-passau.de> | 2009-11-30 14:16:05 +0000 |
commit | 9fc223a6b13c679adc1c13dc458f8666511bedb5 (patch) | |
tree | 48e9db7aea2d58816f931ecd4f8f42ca76bdc405 /clang/lib/Analysis/GRExprEngine.cpp | |
parent | 9caf3801cad960277158f1985509abff375d5ae6 (diff) | |
download | bcm5719-llvm-9fc223a6b13c679adc1c13dc458f8666511bedb5.tar.gz bcm5719-llvm-9fc223a6b13c679adc1c13dc458f8666511bedb5.zip |
Adapt to the DOTGraphTraits changes in LLVM.
llvm-svn: 90137
Diffstat (limited to 'clang/lib/Analysis/GRExprEngine.cpp')
-rw-r--r-- | clang/lib/Analysis/GRExprEngine.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/clang/lib/Analysis/GRExprEngine.cpp b/clang/lib/Analysis/GRExprEngine.cpp index 5321e836bf8..15e958f19b6 100644 --- a/clang/lib/Analysis/GRExprEngine.cpp +++ b/clang/lib/Analysis/GRExprEngine.cpp @@ -2817,6 +2817,9 @@ namespace llvm { template<> struct VISIBILITY_HIDDEN DOTGraphTraits<ExplodedNode*> : public DefaultDOTGraphTraits { + + DOTGraphTraits (bool isSimple=false) : DefaultDOTGraphTraits(isSimple) {} + // FIXME: Since we do not cache error nodes in GRExprEngine now, this does not // work. static std::string getNodeAttributes(const ExplodedNode* N, void*) { @@ -2840,7 +2843,7 @@ struct VISIBILITY_HIDDEN DOTGraphTraits<ExplodedNode*> : return ""; } - static std::string getNodeLabel(const ExplodedNode* N, void*,bool ShortNames){ + static std::string getNodeLabel(const ExplodedNode* N, void*){ std::string sbuf; llvm::raw_string_ostream Out(sbuf); |