diff options
| author | Nate Begeman <natebegeman@mac.com> | 2005-03-26 01:28:05 +0000 |
|---|---|---|
| committer | Nate Begeman <natebegeman@mac.com> | 2005-03-26 01:28:05 +0000 |
| commit | 5d7610de656b03b4d930736d565ba06033380f8f (patch) | |
| tree | aeadf17ff68b8a558bfba5cae96da5e87b54f308 /llvm/lib | |
| parent | d21e2200358cc55356a46c88ce476ba049a90afb (diff) | |
| download | bcm5719-llvm-5d7610de656b03b4d930736d565ba06033380f8f.tar.gz bcm5719-llvm-5d7610de656b03b4d930736d565ba06033380f8f.zip | |
Correct a documention link
llvm-svn: 20840
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/Target/PowerPC/PPC32ISelSimple.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/PowerPC/PPC32ISelSimple.cpp b/llvm/lib/Target/PowerPC/PPC32ISelSimple.cpp index c89ab0682bb..c59dd49dd5c 100644 --- a/llvm/lib/Target/PowerPC/PPC32ISelSimple.cpp +++ b/llvm/lib/Target/PowerPC/PPC32ISelSimple.cpp @@ -1628,7 +1628,7 @@ void PPC32ISel::visitBranchInst(BranchInst &BI) { /// it inserts the specified CallMI instruction into the stream. /// /// FIXME: See Documentation at the following URL for "correct" behavior -/// <http://developer.apple.com/documentation/DeveloperTools/Conceptual/MachORuntime/2rt_powerpc_abi/chapter_9_section_5.html> +/// <http://developer.apple.com/documentation/DeveloperTools/Conceptual/MachORuntime/PowerPCConventions/chapter_3_section_5.html> void PPC32ISel::doCall(const ValueRecord &Ret, MachineInstr *CallMI, const std::vector<ValueRecord> &Args, bool isVarArg) { // Count how many bytes are to be pushed on the stack, including the linkage @@ -1656,7 +1656,7 @@ void PPC32ISel::doCall(const ValueRecord &Ret, MachineInstr *CallMI, if (NumBytes < 56) NumBytes = 56; // Adjust the stack pointer for the new arguments... - // These functions are automatically eliminated by the prolog/epilog pass + // These operations are automatically eliminated by the prolog/epilog pass BuildMI(BB, PPC::ADJCALLSTACKDOWN, 1).addImm(NumBytes); // Arguments go on the stack in reverse order, as specified by the ABI. |

