mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-28 19:31:58 +00:00
Trailing whitespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@126526 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
186e2509fd
commit
08da6365df
@ -37,7 +37,7 @@ namespace {
|
|||||||
public:
|
public:
|
||||||
static char ID; // Pass identification, replacement for typeid
|
static char ID; // Pass identification, replacement for typeid
|
||||||
LowerSubregsInstructionPass() : MachineFunctionPass(ID) {}
|
LowerSubregsInstructionPass() : MachineFunctionPass(ID) {}
|
||||||
|
|
||||||
const char *getPassName() const {
|
const char *getPassName() const {
|
||||||
return "Subregister lowering instruction pass";
|
return "Subregister lowering instruction pass";
|
||||||
}
|
}
|
||||||
@ -64,8 +64,8 @@ namespace {
|
|||||||
char LowerSubregsInstructionPass::ID = 0;
|
char LowerSubregsInstructionPass::ID = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
FunctionPass *llvm::createLowerSubregsPass() {
|
FunctionPass *llvm::createLowerSubregsPass() {
|
||||||
return new LowerSubregsInstructionPass();
|
return new LowerSubregsInstructionPass();
|
||||||
}
|
}
|
||||||
|
|
||||||
/// TransferDeadFlag - MI is a pseudo-instruction with DstReg dead,
|
/// TransferDeadFlag - MI is a pseudo-instruction with DstReg dead,
|
||||||
@ -192,9 +192,9 @@ bool LowerSubregsInstructionPass::LowerCopy(MachineInstr *MI) {
|
|||||||
/// copies.
|
/// copies.
|
||||||
///
|
///
|
||||||
bool LowerSubregsInstructionPass::runOnMachineFunction(MachineFunction &MF) {
|
bool LowerSubregsInstructionPass::runOnMachineFunction(MachineFunction &MF) {
|
||||||
DEBUG(dbgs() << "Machine Function\n"
|
DEBUG(dbgs() << "Machine Function\n"
|
||||||
<< "********** LOWERING SUBREG INSTRS **********\n"
|
<< "********** LOWERING SUBREG INSTRS **********\n"
|
||||||
<< "********** Function: "
|
<< "********** Function: "
|
||||||
<< MF.getFunction()->getName() << '\n');
|
<< MF.getFunction()->getName() << '\n');
|
||||||
TRI = MF.getTarget().getRegisterInfo();
|
TRI = MF.getTarget().getRegisterInfo();
|
||||||
TII = MF.getTarget().getInstrInfo();
|
TII = MF.getTarget().getInstrInfo();
|
||||||
|
Loading…
Reference in New Issue
Block a user