From ca7fd00a1151bc551cf33efe5c4c8787d3f75cd3 Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Fri, 6 Apr 2018 01:21:48 +0000 Subject: [PATCH] Update method names in documentation. They were renamed in r328848. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@329368 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/GarbageCollection.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/GarbageCollection.rst b/docs/GarbageCollection.rst index 4ef174410b7..f7a987f4960 100644 --- a/docs/GarbageCollection.rst +++ b/docs/GarbageCollection.rst @@ -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); } } } -- 2.11.0