File-related functions moved to FileUtilities.h .
authorMisha Brukman <brukman+llvm@gmail.com>
Thu, 7 Aug 2003 21:42:28 +0000 (21:42 +0000)
committerMisha Brukman <brukman+llvm@gmail.com>
Thu, 7 Aug 2003 21:42:28 +0000 (21:42 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7696 91177308-0d34-0410-b5e6-96231b3b80d8

tools/bugpoint/BugDriver.cpp
tools/bugpoint/CodeGeneratorBug.cpp
tools/bugpoint/CrashDebugger.cpp
tools/bugpoint/Miscompilation.cpp
tools/bugpoint/OptimizerDriver.cpp

index 4d1ce462a1b5a01cf8511c01c169c8b8fb8d5f98..a1bb2d426364ba441666e510f796f2c5a5cae283 100644 (file)
@@ -13,7 +13,7 @@
 #include "llvm/Bytecode/Reader.h"
 #include "llvm/Transforms/Utils/Linker.h"
 #include "Support/CommandLine.h"
-#include "Support/SystemUtils.h"
+#include "Support/FileUtilities.h"
 #include <memory>
 
 // Anonymous namespace to define command line options for debugging.
index c11f123fc06a8a892a551c329e79d5b2ddea5cbe..c371f2808f4423872e2a06190e78ed85cb92799a 100644 (file)
@@ -22,7 +22,7 @@
 #include "Support/CommandLine.h"
 #include "Support/Debug.h"
 #include "Support/StringExtras.h"
-#include "Support/SystemUtils.h"
+#include "Support/FileUtilities.h"
 #include <algorithm>
 #include <set>
 
index cd4ed1e0c7021f2c82a4ebda3be6c9073f38acfc..84ba2dc5289986c831bf2438fe6635a2cc443fa2 100644 (file)
@@ -18,7 +18,7 @@
 #include "llvm/Support/CFG.h"
 #include "llvm/Transforms/Scalar.h"
 #include "llvm/Transforms/Utils/Cloning.h"
-#include "Support/SystemUtils.h"
+#include "Support/FileUtilities.h"
 #include <fstream>
 #include <set>
 
index bd500c5f8b8453a761f37a664132ad8ed0172fdb..b88f87c9b1e2de3c9f609ce5adbb015adc63485d 100644 (file)
@@ -10,7 +10,7 @@
 #include "llvm/Pass.h"
 #include "llvm/Transforms/Utils/Cloning.h"
 #include "llvm/Transforms/Utils/Linker.h"
-#include "Support/SystemUtils.h"
+#include "Support/FileUtilities.h"
 
 class ReduceMiscompilingPasses : public ListReducer<const PassInfo*> {
   BugDriver &BD;
index bc3489fd1d6bedbd532ed1f5ca2304d9c28ea5da..fe9112e34cb27b76e4f901e9cb2b293a4548bbc8 100644 (file)
@@ -13,7 +13,7 @@
 #include "llvm/Analysis/Verifier.h"
 #include "llvm/Bytecode/WriteBytecodePass.h"
 #include "llvm/Target/TargetData.h"
-#include "Support/SystemUtils.h"
+#include "Support/FileUtilities.h"
 #include <fstream>
 #include <stdlib.h>
 #include <unistd.h>