diff options
Diffstat (limited to 'tools/gccld')
-rw-r--r-- | tools/gccld/gccld.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/gccld/gccld.cpp b/tools/gccld/gccld.cpp index 11595f7..1e16aa1 100644 --- a/tools/gccld/gccld.cpp +++ b/tools/gccld/gccld.cpp @@ -24,6 +24,7 @@ #include "llvm/Transforms/ConstantMerge.h" #include "llvm/Transforms/IPO/GlobalDCE.h" #include "Support/CommandLine.h" +#include "Support/Signals.h" #include <fstream> #include <memory> #include <algorithm> @@ -161,6 +162,9 @@ int main(int argc, char **argv) { } Passes.add(new WriteBytecodePass(&Out)); // Write bytecode to file... + // Make sure that the Out file gets unlink'd from the disk if we get a SIGINT + RemoveFileOnSignal(OutputFilename+".bc"); + // Run our queue of passes all at once now, efficiently. Passes.run(Composite.get()); Out.close(); |