Teach getRegClassForType where to find FP registers

llvm-svn: 12180
This commit is contained in:
Brian Gaeke 2004-03-06 03:54:13 +00:00
parent 2cb2905c96
commit 639b04aca3
1 changed files with 2 additions and 3 deletions

View File

@ -88,9 +88,8 @@ void SparcV8RegisterInfo::emitEpilogue(MachineFunction &MF,
const TargetRegisterClass*
SparcV8RegisterInfo::getRegClassForType(const Type* Ty) const {
switch (Ty->getPrimitiveID()) {
case Type::FloatTyID:
case Type::DoubleTyID:
assert(0 && "Floating point registers not supported yet!");
case Type::FloatTyID: return &FPRegsInstance;
case Type::DoubleTyID: return &DFPRegsInstance;
case Type::LongTyID:
case Type::ULongTyID: assert(0 && "Long values can't fit in registers!");
default: assert(0 && "Invalid type to getClass!");