aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNate Begeman <natebegeman@mac.com>2005-03-26 01:28:05 +0000
committerNate Begeman <natebegeman@mac.com>2005-03-26 01:28:05 +0000
commitc13a7f0eb3af81bb569d415b1dcf678159aae7a1 (patch)
treeadeae34c19ae0d35fbe33b28bc940501018a4096
parentcf9082589c9bc17aa70d328faea82204726918f1 (diff)
Correct a documention link
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20840 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/PowerPC/PPC32ISelSimple.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/PowerPC/PPC32ISelSimple.cpp b/lib/Target/PowerPC/PPC32ISelSimple.cpp
index c89ab0682b..c59dd49dd5 100644
--- a/lib/Target/PowerPC/PPC32ISelSimple.cpp
+++ b/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.