[llvm-commits] CVS: llvm/lib/Support/GraphWriter.cpp
Reid Spencer
reid at x10sys.com
Thu Aug 24 15:39:39 PDT 2006
Changes in directory llvm/lib/Support:
GraphWriter.cpp updated: 1.4 -> 1.5
---
Log message:
Remove a character to avoid line exceeding 80 cols.
---
Diffs of the changes: (+1 -1)
GraphWriter.cpp | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/lib/Support/GraphWriter.cpp
diff -u llvm/lib/Support/GraphWriter.cpp:1.4 llvm/lib/Support/GraphWriter.cpp:1.5
--- llvm/lib/Support/GraphWriter.cpp:1.4 Mon Aug 21 01:04:45 2006
+++ llvm/lib/Support/GraphWriter.cpp Thu Aug 24 17:39:25 2006
@@ -77,7 +77,7 @@
if (sys::Program::ExecuteAndWait(dotty, &args[0],0,0,0,&ErrMsg)) {
std::cerr << "Error viewing graph: " << ErrMsg << "\n";
} else {
-#ifdef __MINGW32__ // Dotty spawns another app and doesn't wait until it returns.
+#ifdef __MINGW32__ // Dotty spawns another app and doesn't wait until it returns
return;
#endif
}
More information about the llvm-commits
mailing list