diff options
author | Chris Lattner <sabre@nondot.org> | 2010-04-13 04:35:39 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-04-13 04:35:39 +0000 |
commit | c2c6c2564651b8aa1af0a74969a0b4a5981a341a (patch) | |
tree | e90e1f3309555793e850e704adb19ea8559602e9 /lib/Support | |
parent | 2e34623aa9ecf0590bcd2becd71fd1be93f6f98c (diff) | |
download | external_llvm-c2c6c2564651b8aa1af0a74969a0b4a5981a341a.zip external_llvm-c2c6c2564651b8aa1af0a74969a0b4a5981a341a.tar.gz external_llvm-c2c6c2564651b8aa1af0a74969a0b4a5981a341a.tar.bz2 |
Fix PR6826: GraphWriter delete the generated file before "dotty" load it,
patch by 'ether'.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101116 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support')
-rw-r--r-- | lib/Support/GraphWriter.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Support/GraphWriter.cpp b/lib/Support/GraphWriter.cpp index ec84f9b..e300b1f 100644 --- a/lib/Support/GraphWriter.cpp +++ b/lib/Support/GraphWriter.cpp @@ -166,7 +166,8 @@ void llvm::DisplayGraph(const sys::Path &Filename, bool wait, errs() << "Error viewing graph " << Filename.str() << ": " << ErrMsg << "\n"; } else { -#ifdef __MINGW32__ // Dotty spawns another app and doesn't wait until it returns +// Dotty spawns another app and doesn't wait until it returns +#if defined (__MINGW32__) || defined (_WINDOWS) return; #endif Filename.eraseFromDisk(); |