summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-08-23 00:42:42 +0000
committerChris Lattner <sabre@nondot.org>2009-08-23 00:42:42 +0000
commit77942d4ee47e76626d574b027e4b9c5c90e2bbf4 (patch)
tree3e5f40c55068afb2baca1eb12b9c6b29f0c43c8c /include
parent6371ed5e2b29434796333e487e6d14cf16306b4c (diff)
downloadllvm-77942d4ee47e76626d574b027e4b9c5c90e2bbf4.tar.gz
llvm-77942d4ee47e76626d574b027e4b9c5c90e2bbf4.tar.bz2
llvm-77942d4ee47e76626d574b027e4b9c5c90e2bbf4.tar.xz
remove a dead class.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79795 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/CodeGen/LiveIntervalAnalysis.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/include/llvm/CodeGen/LiveIntervalAnalysis.h b/include/llvm/CodeGen/LiveIntervalAnalysis.h
index fa22041981..92048395f8 100644
--- a/include/llvm/CodeGen/LiveIntervalAnalysis.h
+++ b/include/llvm/CodeGen/LiveIntervalAnalysis.h
@@ -538,38 +538,6 @@ namespace llvm {
void printRegName(unsigned reg) const;
};
-
- /// IntervalPrefixPrinter - Print live interval indices before each
- /// instruction.
- class IntervalPrefixPrinter : public PrefixPrinter {
- private:
- const LiveIntervals &liinfo;
-
- public:
- IntervalPrefixPrinter(const LiveIntervals &lii)
- : liinfo(lii) {};
-
- // We need null implementations of the other virtual functions to
- // avoid warnings about hidden virtual functions.
-
- raw_ostream &operator()(raw_ostream &out,
- const MachineBasicBlock &instr) const {
- return out;
- }
-
- raw_ostream &operator()(raw_ostream &out,
- const MachineInstr &instr) const;
-
- std::ostream &operator()(std::ostream &out,
- const MachineBasicBlock &instr) const {
- return out;
- }
-
- std::ostream &operator()(std::ostream &out,
- const MachineInstr &instr) const {
- return out;
- }
- };
} // End llvm namespace
#endif