aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/llvm/Target/TargetOptInfo.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/include/llvm/Target/TargetOptInfo.h b/include/llvm/Target/TargetOptInfo.h
deleted file mode 100644
index 658932e..0000000
--- a/include/llvm/Target/TargetOptInfo.h
+++ /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 ⌖
-
- 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