summaryrefslogtreecommitdiff
path: root/lib/Target/Mips/MCTargetDesc/MipsReginfo.h
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2014-01-31 23:10:26 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2014-01-31 23:10:26 +0000
commitac9f143a696f5d17bb97aee2230de67c002105b2 (patch)
treef3249cf637b2d34fbb00e542d790ab2301a9f9d2 /lib/Target/Mips/MCTargetDesc/MipsReginfo.h
parent9934ff2b7f99c24b3ffc9d94dbe57a1c13f02b7c (diff)
downloadllvm-ac9f143a696f5d17bb97aee2230de67c002105b2.tar.gz
llvm-ac9f143a696f5d17bb97aee2230de67c002105b2.tar.bz2
llvm-ac9f143a696f5d17bb97aee2230de67c002105b2.tar.xz
Remove another hasRawTextSupport.
To remove this one simply move the end of file logic from the asm printer to the target mc streamer. This removes the last call to hasRawTextSupport from lib/Target. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@200590 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Mips/MCTargetDesc/MipsReginfo.h')
-rw-r--r--lib/Target/Mips/MCTargetDesc/MipsReginfo.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/lib/Target/Mips/MCTargetDesc/MipsReginfo.h b/lib/Target/Mips/MCTargetDesc/MipsReginfo.h
deleted file mode 100644
index 039b8eaaf2..0000000000
--- a/lib/Target/Mips/MCTargetDesc/MipsReginfo.h
+++ /dev/null
@@ -1,31 +0,0 @@
-//=== MipsReginfo.h - MipsReginfo -----------------------------------------===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENCE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-
-#ifndef MIPSREGINFO_H
-#define MIPSREGINFO_H
-
-namespace llvm {
- class MCStreamer;
- class TargetLoweringObjectFile;
- class MipsSubtarget;
-
- class MipsReginfo {
- void anchor();
- public:
- MipsReginfo() {}
-
- void emitMipsReginfoSectionCG(MCStreamer &OS,
- const TargetLoweringObjectFile &TLOF,
- const MipsSubtarget &MST) const;
- };
-
-} // namespace llvm
-
-#endif
-