1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 03:23:01 +02:00

Add a TODO for the Alpha port inline asm constraints.

llvm-svn: 134089
This commit is contained in:
Eric Christopher 2011-06-29 19:41:27 +00:00
parent 8e69ef8e77
commit 646312db05

View File

@ -835,6 +835,8 @@ getRegForInlineAsmConstraint(const std::string &Constraint, EVT VT) const
case 'r':
return std::make_pair(0U, Alpha::GPRCRegisterClass);
case 'f':
// TODO: Do we need to add the 64-bit register class here when
// it contains the same registers?
return std::make_pair(0U, Alpha::F4RCRegisterClass);
}
}