Converted tabs to spaces.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7728 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Misha Brukman 2003-08-11 15:38:50 +00:00
parent 859e5cc1f7
commit bf2f8a9963

View File

@ -74,9 +74,9 @@ def R16 : RegisterClass<i16, 2, [AX, CX, DX, BX, SI, DI, BP, SP]> {
let Methods = [{
iterator allocation_order_end(MachineFunction &MF) const {
if (hasFP(MF)) // Does the function dedicate EBP to being a frame ptr?
return end()-2; // If so, don't allocate SP or BP
return end()-2; // If so, don't allocate SP or BP
else
return end()-1; // If not, just don't allocate SP
return end()-1; // If not, just don't allocate SP
}
}];
}