[llvm-commits] CVS: llvm/lib/Target/PowerPC/PPC32ISelSimple.cpp
Nate Begeman
natebegeman at mac.com
Fri Mar 25 17:28:16 PST 2005
Changes in directory llvm/lib/Target/PowerPC:
PPC32ISelSimple.cpp updated: 1.128 -> 1.129
---
Log message:
Correct a documention link
---
Diffs of the changes: (+2 -2)
PPC32ISelSimple.cpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Index: llvm/lib/Target/PowerPC/PPC32ISelSimple.cpp
diff -u llvm/lib/Target/PowerPC/PPC32ISelSimple.cpp:1.128 llvm/lib/Target/PowerPC/PPC32ISelSimple.cpp:1.129
--- llvm/lib/Target/PowerPC/PPC32ISelSimple.cpp:1.128 Thu Mar 24 17:34:38 2005
+++ llvm/lib/Target/PowerPC/PPC32ISelSimple.cpp Fri Mar 25 19:28:05 2005
@@ -1628,7 +1628,7 @@
/// 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 @@
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.
More information about the llvm-commits
mailing list