[llvm] r329368 - Update method names in documentation.
Rafael Espindola via llvm-commits
llvm-commits at lists.llvm.org
Thu Apr 5 18:21:48 PDT 2018
Author: rafael
Date: Thu Apr 5 18:21:48 2018
New Revision: 329368
URL: http://llvm.org/viewvc/llvm-project?rev=329368&view=rev
Log:
Update method names in documentation.
They were renamed in r328848.
Modified:
llvm/trunk/docs/GarbageCollection.rst
Modified: llvm/trunk/docs/GarbageCollection.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/GarbageCollection.rst?rev=329368&r1=329367&r2=329368&view=diff
==============================================================================
--- llvm/trunk/docs/GarbageCollection.rst (original)
+++ llvm/trunk/docs/GarbageCollection.rst Thu Apr 5 18:21:48 2018
@@ -1032,7 +1032,7 @@ a realistic example:
// Emit PointCount.
OS.AddComment("safe point count");
- AP.EmitInt32(MD.size());
+ AP.emitInt32(MD.size());
// And each safe point...
for (GCFunctionInfo::iterator PI = MD.begin(),
@@ -1049,18 +1049,18 @@ a realistic example:
// Emit the stack frame size.
OS.AddComment("stack frame size (in words)");
- AP.EmitInt32(MD.getFrameSize() / IntPtrSize);
+ AP.emitInt32(MD.getFrameSize() / IntPtrSize);
// Emit stack arity, i.e. the number of stacked arguments.
unsigned RegisteredArgs = IntPtrSize == 4 ? 5 : 6;
unsigned StackArity = MD.getFunction().arg_size() > RegisteredArgs ?
MD.getFunction().arg_size() - RegisteredArgs : 0;
OS.AddComment("stack arity");
- AP.EmitInt32(StackArity);
+ AP.emitInt32(StackArity);
// Emit the number of live roots in the function.
OS.AddComment("live root count");
- AP.EmitInt32(MD.live_size(PI));
+ AP.emitInt32(MD.live_size(PI));
// And for each live root...
for (GCFunctionInfo::live_iterator LI = MD.live_begin(PI),
@@ -1068,7 +1068,7 @@ a realistic example:
LI != LE; ++LI) {
// Emit live root's offset within the stack frame.
OS.AddComment("stack index (offset / wordsize)");
- AP.EmitInt32(LI->StackOffset);
+ AP.emitInt32(LI->StackOffset);
}
}
}
More information about the llvm-commits
mailing list