mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-02 08:46:37 +00:00
* Correct 64-bit version: blr 1 (not 0)
* BuildMI() can build 0-param instructions (e.g., NOP) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15681 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e4d093c356
commit
a1b6ae9d7c
@ -1222,7 +1222,7 @@ void ISel::visitReturnInst(ReturnInst &I) {
|
||||
visitInstruction(I);
|
||||
}
|
||||
}
|
||||
BuildMI(BB, PPC::BLR, 1).addImm(0);
|
||||
BuildMI(BB, PPC::BLR, 1).addImm(1);
|
||||
}
|
||||
|
||||
// getBlockAfter - Return the basic block which occurs lexically after the
|
||||
@ -1457,7 +1457,7 @@ void ISel::doCall(const ValueRecord &Ret, MachineInstr *CallMI,
|
||||
|
||||
BuildMI(BB, PPC::IMPLICIT_DEF, 0, PPC::LR);
|
||||
BB->push_back(CallMI);
|
||||
BuildMI(BB, PPC::NOP, 1).addImm(0);
|
||||
BuildMI(BB, PPC::NOP, 0);
|
||||
|
||||
// These functions are automatically eliminated by the prolog/epilog pass
|
||||
BuildMI(BB, PPC::ADJCALLSTACKUP, 1).addImm(NumBytes);
|
||||
|
Loading…
Reference in New Issue
Block a user