[cfe-commits] r74085 - in /cfe/trunk/lib: AST/CFG.cpp AST/StmtViz.cpp Analysis/GRExprEngine.cpp
Owen Anderson
resistor at mac.com
Wed Jun 24 10:37:55 PDT 2009
Author: resistor
Date: Wed Jun 24 12:37:55 2009
New Revision: 74085
URL: http://llvm.org/viewvc/llvm-project?rev=74085&view=rev
Log:
Update for LLVM API changes.
Modified:
cfe/trunk/lib/AST/CFG.cpp
cfe/trunk/lib/AST/StmtViz.cpp
cfe/trunk/lib/Analysis/GRExprEngine.cpp
Modified: cfe/trunk/lib/AST/CFG.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/AST/CFG.cpp?rev=74085&r1=74084&r2=74085&view=diff
==============================================================================
--- cfe/trunk/lib/AST/CFG.cpp (original)
+++ cfe/trunk/lib/AST/CFG.cpp Wed Jun 24 12:37:55 2009
@@ -1887,7 +1887,8 @@
namespace llvm {
template<>
struct DOTGraphTraits<const CFG*> : public DefaultDOTGraphTraits {
- static std::string getNodeLabel(const CFGBlock* Node, const CFG* Graph) {
+ static std::string getNodeLabel(const CFGBlock* Node, const CFG* Graph,
+ bool ShortNames) {
#ifndef NDEBUG
std::string OutSStr;
Modified: cfe/trunk/lib/AST/StmtViz.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/AST/StmtViz.cpp?rev=74085&r1=74084&r2=74085&view=diff
==============================================================================
--- cfe/trunk/lib/AST/StmtViz.cpp (original)
+++ cfe/trunk/lib/AST/StmtViz.cpp Wed Jun 24 12:37:55 2009
@@ -31,7 +31,8 @@
namespace llvm {
template<>
struct DOTGraphTraits<const Stmt*> : public DefaultDOTGraphTraits {
- static std::string getNodeLabel(const Stmt* Node, const Stmt* Graph) {
+ static std::string getNodeLabel(const Stmt* Node, const Stmt* Graph,
+ bool ShortNames) {
#ifndef NDEBUG
std::string OutSStr;
Modified: cfe/trunk/lib/Analysis/GRExprEngine.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Analysis/GRExprEngine.cpp?rev=74085&r1=74084&r2=74085&view=diff
==============================================================================
--- cfe/trunk/lib/Analysis/GRExprEngine.cpp (original)
+++ cfe/trunk/lib/Analysis/GRExprEngine.cpp Wed Jun 24 12:37:55 2009
@@ -3156,7 +3156,8 @@
return "";
}
- static std::string getNodeLabel(const GRExprEngine::NodeTy* N, void*) {
+ static std::string getNodeLabel(const GRExprEngine::NodeTy* N, void*,
+ bool ShortNames) {
std::ostringstream Out;
// Program Location.
More information about the cfe-commits
mailing list