Remove dead file
authorChris Lattner <sabre@nondot.org>
Mon, 1 Sep 2003 20:41:21 +0000 (20:41 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 1 Sep 2003 20:41:21 +0000 (20:41 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8313 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Target/TargetOptInfo.h [deleted file]

diff --git a/include/llvm/Target/TargetOptInfo.h b/include/llvm/Target/TargetOptInfo.h
deleted file mode 100644 (file)
index 658932e..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-//===-- llvm/Target/TargetOptInfo.h ------------------------------*- C++ -*-==//
-//
-//  FIXME: ADD A COMMENT DESCRIBING THIS FILE!
-//
-//===----------------------------------------------------------------------===//
-
-#ifndef LLVM_TARGET_TARGETOPTINFO_H
-#define LLVM_TARGET_TARGETOPTINFO_H
-
-class MachineInstr;
-class TargetMachine;
-
-struct TargetOptInfo {
-  const TargetMachine &target;
-  
-  TargetOptInfo(const TargetOptInfo &);   // DO NOT IMPLEMENT
-  void operator=(const TargetOptInfo &);  // DO NOT IMPLEMENT
-public:
-  TargetOptInfo(const TargetMachine &TM) : target(TM) { }
-
-  virtual bool IsUselessCopy(const MachineInstr* MI) const = 0;
-};
-
-#endif