summaryrefslogtreecommitdiff
path: root/tools/bugpoint/bugpoint.cpp
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-12-27 06:18:02 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-12-27 06:18:02 +0000
commit51163306ab0c51f1103139200cadb8e3fa6bfd18 (patch)
tree91ca98aaab4e31fe875b4c04333ec3cdac91083f /tools/bugpoint/bugpoint.cpp
parent7c1e2f96cdf87592736091ca9ec164c7e9d08d6d (diff)
downloadllvm-51163306ab0c51f1103139200cadb8e3fa6bfd18.tar.gz
llvm-51163306ab0c51f1103139200cadb8e3fa6bfd18.tar.bz2
llvm-51163306ab0c51f1103139200cadb8e3fa6bfd18.tar.xz
For PR351:
* sys::PreventCoreFiles -> sys::Process::PreventCoreFiles git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19162 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/bugpoint/bugpoint.cpp')
-rw-r--r--tools/bugpoint/bugpoint.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/bugpoint/bugpoint.cpp b/tools/bugpoint/bugpoint.cpp
index 2c9806748f..ff26a37693 100644
--- a/tools/bugpoint/bugpoint.cpp
+++ b/tools/bugpoint/bugpoint.cpp
@@ -16,9 +16,9 @@
#include "BugDriver.h"
#include "llvm/Support/PassNameParser.h"
#include "llvm/Support/ToolRunner.h"
-#include "llvm/System/SysConfig.h"
#include "llvm/Support/CommandLine.h"
#include "llvm/Support/PluginLoader.h"
+#include "llvm/System/Process.h"
#include "llvm/System/Signals.h"
using namespace llvm;
@@ -45,7 +45,7 @@ int main(int argc, char **argv) {
// Bugpoint has the ability of generating a plethora of core files, so to
// avoid filling up the disk, we prevent it
- sys::PreventCoreFiles();
+ sys::Process::PreventCoreFiles();
try {
return D.run();