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 | 7b7a1be8561c0cfda11b5ff287aa115cb1e68df5 (patch) | |
tree | 6ce61d69c8fe6d72ff4fb1043985c9351d999a08 /lib/Support | |
parent | 3b53c4ee911017db2a0fcf416776973d9d153eeb (diff) |
Remove a character to avoid line exceeding 80 cols.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29860 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support')
-rw-r--r-- | lib/Support/GraphWriter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Support/GraphWriter.cpp b/lib/Support/GraphWriter.cpp index 501cc6d89d..fa9830a34b 100644 --- a/lib/Support/GraphWriter.cpp +++ b/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 } |