1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00

Fix code style

llvm-svn: 47370
This commit is contained in:
Anton Korobeynikov 2008-02-20 11:24:05 +00:00
parent 4f6e612973
commit 9b1c5f2cac

View File

@ -282,8 +282,7 @@ void AlphaRegisterInfo::emitEpilogue(MachineFunction &MF,
long NumBytes = MFI->getStackSize(); long NumBytes = MFI->getStackSize();
//now if we need to, restore the old FP //now if we need to, restore the old FP
if (FP) if (FP) {
{
//copy the FP into the SP (discards allocas) //copy the FP into the SP (discards allocas)
BuildMI(MBB, MBBI, TII.get(Alpha::BISr), Alpha::R30).addReg(Alpha::R15) BuildMI(MBB, MBBI, TII.get(Alpha::BISr), Alpha::R30).addReg(Alpha::R15)
.addReg(Alpha::R15); .addReg(Alpha::R15);
@ -291,21 +290,20 @@ void AlphaRegisterInfo::emitEpilogue(MachineFunction &MF,
BuildMI(MBB, MBBI, TII.get(Alpha::LDQ), Alpha::R15).addImm(0).addReg(Alpha::R15); BuildMI(MBB, MBBI, TII.get(Alpha::LDQ), Alpha::R15).addImm(0).addReg(Alpha::R15);
} }
if (NumBytes != 0) if (NumBytes != 0) {
{ if (NumBytes <= IMM_HIGH) {
if (NumBytes <= IMM_HIGH) { BuildMI(MBB, MBBI, TII.get(Alpha::LDA), Alpha::R30).addImm(NumBytes)
BuildMI(MBB, MBBI, TII.get(Alpha::LDA), Alpha::R30).addImm(NumBytes) .addReg(Alpha::R30);
.addReg(Alpha::R30); } else if (getUpper16(NumBytes) <= IMM_HIGH) {
} else if (getUpper16(NumBytes) <= IMM_HIGH) { BuildMI(MBB, MBBI, TII.get(Alpha::LDAH), Alpha::R30)
BuildMI(MBB, MBBI, TII.get(Alpha::LDAH), Alpha::R30) .addImm(getUpper16(NumBytes)).addReg(Alpha::R30);
.addImm(getUpper16(NumBytes)).addReg(Alpha::R30); BuildMI(MBB, MBBI, TII.get(Alpha::LDA), Alpha::R30)
BuildMI(MBB, MBBI, TII.get(Alpha::LDA), Alpha::R30) .addImm(getLower16(NumBytes)).addReg(Alpha::R30);
.addImm(getLower16(NumBytes)).addReg(Alpha::R30); } else {
} else { cerr << "Too big a stack frame at " << NumBytes << "\n";
cerr << "Too big a stack frame at " << NumBytes << "\n"; abort();
abort(); }
} }
}
} }
unsigned AlphaRegisterInfo::getRARegister() const { unsigned AlphaRegisterInfo::getRARegister() const {