diff options
author | Chris Lattner <sabre@nondot.org> | 2002-04-18 19:55:25 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-04-18 19:55:25 +0000 |
commit | c065ad850cd17ce17c83453ccb96d5dc32d84494 (patch) | |
tree | 20536119ff49ee0c3ba515edb436270b19f9f14b /llvm/tools/llvm-dis/dis.cpp | |
parent | 1c2329ade33de1693492f97a1e4e26df6d2d78cc (diff) | |
download | bcm5719-llvm-c065ad850cd17ce17c83453ccb96d5dc32d84494.tar.gz bcm5719-llvm-c065ad850cd17ce17c83453ccb96d5dc32d84494.zip |
Make sure that there is no case where a signal can occur leaving a partially
written output file. This is important because crashing testcases often write
part of a file out, and the testing harness decides the file is up-to-date next
time the test is run.
llvm-svn: 2303
Diffstat (limited to 'llvm/tools/llvm-dis/dis.cpp')
-rw-r--r-- | llvm/tools/llvm-dis/dis.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/llvm/tools/llvm-dis/dis.cpp b/llvm/tools/llvm-dis/dis.cpp index a317cb316d5..e14dcdc9a79 100644 --- a/llvm/tools/llvm-dis/dis.cpp +++ b/llvm/tools/llvm-dis/dis.cpp @@ -23,6 +23,7 @@ #include "Support/DepthFirstIterator.h" #include "Support/PostOrderIterator.h" #include "Support/CommandLine.h" +#include "Support/Signals.h" #include <fstream> #include <iostream> using std::cerr; @@ -85,6 +86,10 @@ int main(int argc, char **argv) { << "': File exists! Sending to standard output.\n"; } else { Out = new std::ofstream(OutputFilename.c_str()); + + // Make sure that the Out file gets unlink'd from the disk if we get a + // SIGINT + RemoveFileOnSignal(OutputFilename); } } } |