Move ToolRunner.(cpp|h) into the bugpoint directory

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28699 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2006-06-06 22:30:59 +00:00
parent 18a4af2ba6
commit f1b20d8620
6 changed files with 8 additions and 9 deletions

View File

@ -14,12 +14,12 @@
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//
#include "BugDriver.h" #include "BugDriver.h"
#include "ToolRunner.h"
#include "llvm/Linker.h" #include "llvm/Linker.h"
#include "llvm/Module.h" #include "llvm/Module.h"
#include "llvm/Pass.h" #include "llvm/Pass.h"
#include "llvm/Assembly/Parser.h" #include "llvm/Assembly/Parser.h"
#include "llvm/Bytecode/Reader.h" #include "llvm/Bytecode/Reader.h"
#include "llvm/Support/ToolRunner.h"
#include "llvm/Support/CommandLine.h" #include "llvm/Support/CommandLine.h"
#include "llvm/Support/FileUtilities.h" #include "llvm/Support/FileUtilities.h"
#include <iostream> #include <iostream>

View File

@ -12,6 +12,7 @@
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//
#include "BugDriver.h" #include "BugDriver.h"
#include "ToolRunner.h"
#include "ListReducer.h" #include "ListReducer.h"
#include "llvm/Constant.h" #include "llvm/Constant.h"
#include "llvm/Instructions.h" #include "llvm/Instructions.h"
@ -23,7 +24,6 @@
#include "llvm/Analysis/Verifier.h" #include "llvm/Analysis/Verifier.h"
#include "llvm/Bytecode/Writer.h" #include "llvm/Bytecode/Writer.h"
#include "llvm/Support/CFG.h" #include "llvm/Support/CFG.h"
#include "llvm/Support/ToolRunner.h"
#include "llvm/Transforms/Scalar.h" #include "llvm/Transforms/Scalar.h"
#include "llvm/Transforms/Utils/Cloning.h" #include "llvm/Transforms/Utils/Cloning.h"
#include "llvm/Support/FileUtilities.h" #include "llvm/Support/FileUtilities.h"

View File

@ -13,7 +13,7 @@
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//
#include "BugDriver.h" #include "BugDriver.h"
#include "llvm/Support/ToolRunner.h" #include "ToolRunner.h"
#include "llvm/Support/CommandLine.h" #include "llvm/Support/CommandLine.h"
#include "llvm/Support/Debug.h" #include "llvm/Support/Debug.h"
#include "llvm/Support/FileUtilities.h" #include "llvm/Support/FileUtilities.h"

View File

@ -12,7 +12,7 @@
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//
#define DEBUG_TYPE "toolrunner" #define DEBUG_TYPE "toolrunner"
#include "llvm/Support/ToolRunner.h" #include "ToolRunner.h"
#include "llvm/Config/config.h" // for HAVE_LINK_R #include "llvm/Config/config.h" // for HAVE_LINK_R
#include "llvm/System/Program.h" #include "llvm/System/Program.h"
#include "llvm/Support/Debug.h" #include "llvm/Support/Debug.h"

View File

@ -1,4 +1,4 @@
//===-- llvm/Support/ToolRunner.h -------------------------------*- C++ -*-===// //===-- tools/bugpoint/ToolRunner.h -----------------------------*- C++ -*-===//
// //
// The LLVM Compiler Infrastructure // The LLVM Compiler Infrastructure
// //
@ -14,8 +14,8 @@
// //
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//
#ifndef LLVM_SUPPORT_TOOLRUNNER_H #ifndef BUGPOINT_TOOLRUNNER_H
#define LLVM_SUPPORT_TOOLRUNNER_H #define BUGPOINT_TOOLRUNNER_H
#include "llvm/Support/SystemUtils.h" #include "llvm/Support/SystemUtils.h"
#include <exception> #include <exception>
@ -26,7 +26,6 @@ namespace llvm {
class CBE; class CBE;
class LLC; class LLC;
/// ToolExecutionError - An instance of this class is thrown by the /// ToolExecutionError - An instance of this class is thrown by the
/// AbstractInterpreter instances if there is an error running a tool (e.g., LLC /// AbstractInterpreter instances if there is an error running a tool (e.g., LLC
/// crashes) which prevents execution of the program. /// crashes) which prevents execution of the program.

View File

@ -14,10 +14,10 @@
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//
#include "BugDriver.h" #include "BugDriver.h"
#include "ToolRunner.h"
#include "llvm/Analysis/LinkAllAnalyses.h" #include "llvm/Analysis/LinkAllAnalyses.h"
#include "llvm/Transforms/LinkAllPasses.h" #include "llvm/Transforms/LinkAllPasses.h"
#include "llvm/Support/PassNameParser.h" #include "llvm/Support/PassNameParser.h"
#include "llvm/Support/ToolRunner.h"
#include "llvm/Support/CommandLine.h" #include "llvm/Support/CommandLine.h"
#include "llvm/Support/PluginLoader.h" #include "llvm/Support/PluginLoader.h"
#include "llvm/System/Process.h" #include "llvm/System/Process.h"