diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2006-08-24 22:39:25 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2006-08-24 22:39:25 +0000 |
commit | a38aa727711b43eacedfa6186d7de7df976c4ab3 (patch) | |
tree | 04a72e5868a16f11644ceac53821ff1607fe123a /llvm/lib/Support | |
parent | e001d811ba487e0d1e1ab3d941711995fc207e23 (diff) | |
download | bcm5719-llvm-a38aa727711b43eacedfa6186d7de7df976c4ab3.tar.gz bcm5719-llvm-a38aa727711b43eacedfa6186d7de7df976c4ab3.zip |
Remove a character to avoid line exceeding 80 cols.
llvm-svn: 29860
Diffstat (limited to 'llvm/lib/Support')
-rw-r--r-- | llvm/lib/Support/GraphWriter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Support/GraphWriter.cpp b/llvm/lib/Support/GraphWriter.cpp index 501cc6d89d3..fa9830a34b3 100644 --- a/llvm/lib/Support/GraphWriter.cpp +++ b/llvm/lib/Support/GraphWriter.cpp @@ -77,7 +77,7 @@ void llvm::DisplayGraph(const sys::Path &Filename) { 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 } |