forked from OSchip/llvm-project
Reserve D16-D13 on subtargets that don't support them.
llvm-svn: 133321
This commit is contained in:
parent
35cea3da35
commit
19d968e62f
|
@ -100,6 +100,12 @@ getReservedRegs(const MachineFunction &MF) const {
|
|||
// Some targets reserve R9.
|
||||
if (STI.isR9Reserved())
|
||||
Reserved.set(ARM::R9);
|
||||
// Reserve D16-D31 if the subtarget doesn't support them.
|
||||
if (!STI.hasVFP3() || STI.hasD16()) {
|
||||
assert(ARM::D31 == ARM::D16 + 15);
|
||||
for (unsigned i = 0; i != 16; ++i)
|
||||
Reserved.set(ARM::D16 + i);
|
||||
}
|
||||
return Reserved;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue