[llvm-commits] CVS: llvm/tools/bugpoint/bugpoint.cpp
Reid Spencer
reid at x10sys.com
Sun Dec 26 22:18:12 PST 2004
Changes in directory llvm/tools/bugpoint:
bugpoint.cpp updated: 1.21 -> 1.22
---
Log message:
For PR351: http://llvm.cs.uiuc.edu/PR351 :
* sys::PreventCoreFiles -> sys::Process::PreventCoreFiles
---
Diffs of the changes: (+2 -2)
Index: llvm/tools/bugpoint/bugpoint.cpp
diff -u llvm/tools/bugpoint/bugpoint.cpp:1.21 llvm/tools/bugpoint/bugpoint.cpp:1.22
--- llvm/tools/bugpoint/bugpoint.cpp:1.21 Sun Dec 19 23:36:57 2004
+++ llvm/tools/bugpoint/bugpoint.cpp Mon Dec 27 00:18:02 2004
@@ -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 @@
// 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();
More information about the llvm-commits
mailing list