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

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