From: Chris Lattner Date: Mon, 1 Sep 2003 20:41:21 +0000 (+0000) Subject: Remove dead file X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=4f98928d580d6f6c5fa2547ec06c0546b33285bd;p=oota-llvm.git Remove dead file git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8313 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Target/TargetOptInfo.h b/include/llvm/Target/TargetOptInfo.h deleted file mode 100644 index 658932eb246..00000000000 --- 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