From 7b7a1be8561c0cfda11b5ff287aa115cb1e68df5 Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Thu, 24 Aug 2006 22:39:25 +0000 Subject: [PATCH] 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 --- lib/Support/GraphWriter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Support/GraphWriter.cpp b/lib/Support/GraphWriter.cpp index 501cc6d89d3..fa9830a34b3 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 } -- 2.34.1