diff options
author | Chris Lattner <sabre@nondot.org> | 2005-08-19 18:33:26 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-08-19 18:33:26 +0000 |
commit | 5499742c06250a060896a6f9b62019495c061803 (patch) | |
tree | 1d1e527f1f7c76555ab9539f8673a46aed1df451 /lib/Target/Alpha/AlphaRegisterInfo.cpp | |
parent | 2505d6b72731628e34097adecc3dc6e26e220e04 (diff) |
This code has always been dead for alpha
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22915 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Alpha/AlphaRegisterInfo.cpp')
-rw-r--r-- | lib/Target/Alpha/AlphaRegisterInfo.cpp | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/lib/Target/Alpha/AlphaRegisterInfo.cpp b/lib/Target/Alpha/AlphaRegisterInfo.cpp index f7c3e5402c..b6c93531c9 100644 --- a/lib/Target/Alpha/AlphaRegisterInfo.cpp +++ b/lib/Target/Alpha/AlphaRegisterInfo.cpp @@ -333,26 +333,6 @@ void AlphaRegisterInfo::emitEpilogue(MachineFunction &MF, #include "AlphaGenRegisterInfo.inc" -const TargetRegisterClass* -AlphaRegisterInfo::getRegClassForType(const Type* Ty) const { - switch (Ty->getTypeID()) { - default: assert(0 && "Invalid type to getClass!"); - case Type::BoolTyID: - case Type::SByteTyID: - case Type::UByteTyID: - case Type::ShortTyID: - case Type::UShortTyID: - case Type::IntTyID: - case Type::UIntTyID: - case Type::PointerTyID: - case Type::LongTyID: - case Type::ULongTyID: return &GPRCInstance; - - case Type::FloatTyID: - case Type::DoubleTyID: return &FPRCInstance; - } -} - std::string AlphaRegisterInfo::getPrettyName(unsigned reg) { std::string s(RegisterDescriptors[reg].Name); |