aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/Mips
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2013-10-07 13:39:22 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2013-10-07 13:39:22 +0000
commitef8c4ca252f1289ca8d0a1e6cfd96ca17fe3c5a8 (patch)
treeab4cada14200eec36646d146e7daf5247fa471e7 /lib/Target/Mips
parentc697f8b28832a0dcb8b7ceb919b02628050b7730 (diff)
downloadexternal_llvm-ef8c4ca252f1289ca8d0a1e6cfd96ca17fe3c5a8.zip
external_llvm-ef8c4ca252f1289ca8d0a1e6cfd96ca17fe3c5a8.tar.gz
external_llvm-ef8c4ca252f1289ca8d0a1e6cfd96ca17fe3c5a8.tar.bz2
Remove getEHExceptionRegister and getEHHandlerRegister.
They haven't been used for a long time. Patch by MathOnNapkins. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@192099 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Mips')
-rw-r--r--lib/Target/Mips/MipsRegisterInfo.cpp9
-rw-r--r--lib/Target/Mips/MipsRegisterInfo.h4
2 files changed, 0 insertions, 13 deletions
diff --git a/lib/Target/Mips/MipsRegisterInfo.cpp b/lib/Target/Mips/MipsRegisterInfo.cpp
index ee81bae..3105b02 100644
--- a/lib/Target/Mips/MipsRegisterInfo.cpp
+++ b/lib/Target/Mips/MipsRegisterInfo.cpp
@@ -240,12 +240,3 @@ getFrameRegister(const MachineFunction &MF) const {
}
-unsigned MipsRegisterInfo::
-getEHExceptionRegister() const {
- llvm_unreachable("What is the exception register");
-}
-
-unsigned MipsRegisterInfo::
-getEHHandlerRegister() const {
- llvm_unreachable("What is the exception handler register");
-}
diff --git a/lib/Target/Mips/MipsRegisterInfo.h b/lib/Target/Mips/MipsRegisterInfo.h
index c867524..0450c6f 100644
--- a/lib/Target/Mips/MipsRegisterInfo.h
+++ b/lib/Target/Mips/MipsRegisterInfo.h
@@ -68,10 +68,6 @@ public:
/// Debug information queries.
unsigned getFrameRegister(const MachineFunction &MF) const;
- /// Exception handling queries.
- unsigned getEHExceptionRegister() const;
- unsigned getEHHandlerRegister() const;
-
/// \brief Return GPR register class.
virtual const TargetRegisterClass *intRegClass(unsigned Size) const = 0;