Fix code formatting

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14899 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Misha Brukman 2004-07-16 20:54:25 +00:00
parent 01d46e9c55
commit be15f67af7

View File

@ -13,14 +13,14 @@
#include "PowerPCInstrInfo.h" #include "PowerPCInstrInfo.h"
#include "PowerPC.h" #include "PowerPC.h"
#include "llvm/CodeGen/MachineInstrBuilder.h"
#include "PowerPCGenInstrInfo.inc" #include "PowerPCGenInstrInfo.inc"
#include "llvm/CodeGen/MachineInstrBuilder.h"
#include <iostream> #include <iostream>
using namespace llvm; using namespace llvm;
PowerPCInstrInfo::PowerPCInstrInfo() PowerPCInstrInfo::PowerPCInstrInfo()
: TargetInstrInfo(PowerPCInsts, sizeof(PowerPCInsts)/sizeof(PowerPCInsts[0])){ : TargetInstrInfo(PowerPCInsts, sizeof(PowerPCInsts)/sizeof(PowerPCInsts[0]))
} { }
bool PowerPCInstrInfo::isMoveInstr(const MachineInstr& MI, bool PowerPCInstrInfo::isMoveInstr(const MachineInstr& MI,
unsigned& sourceReg, unsigned& sourceReg,
@ -37,8 +37,7 @@ bool PowerPCInstrInfo::isMoveInstr(const MachineInstr& MI,
destReg = MI.getOperand(0).getReg(); destReg = MI.getOperand(0).getReg();
return true; return true;
} }
} } else if (oc == PPC32::FMR) {
else if (oc == PPC32::FMR) {
assert(MI.getNumOperands() == 2 && assert(MI.getNumOperands() == 2 &&
MI.getOperand(0).isRegister() && MI.getOperand(0).isRegister() &&
MI.getOperand(1).isRegister() && MI.getOperand(1).isRegister() &&