[llvm-commits] CVS: llvm/lib/Support/GraphWriter.cpp
Chris Lattner
sabre at nondot.org
Thu May 3 11:32:33 PDT 2007
Changes in directory llvm/lib/Support:
GraphWriter.cpp updated: 1.8 -> 1.9
---
Log message:
This is a patch to fix a compile error in STLExtras.h, and
a bug in GraphWriter.cpp.
Patch by Florian Brandner
---
Diffs of the changes: (+1 -0)
GraphWriter.cpp | 1 +
1 files changed, 1 insertion(+)
Index: llvm/lib/Support/GraphWriter.cpp
diff -u llvm/lib/Support/GraphWriter.cpp:1.8 llvm/lib/Support/GraphWriter.cpp:1.9
--- llvm/lib/Support/GraphWriter.cpp:1.8 Fri Feb 16 13:11:06 2007
+++ llvm/lib/Support/GraphWriter.cpp Thu May 3 13:32:10 2007
@@ -70,6 +70,7 @@
sys::Path dotty(LLVM_PATH_DOTTY);
std::vector<const char*> args;
+ args.push_back(dotty.c_str());
args.push_back(Filename.c_str());
args.push_back(0);
More information about the llvm-commits
mailing list