summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2013-10-18 23:11:25 +0000
committerBill Wendling <isanbard@gmail.com>2013-10-18 23:11:25 +0000
commit68ad65c25d66d34098dfa00ae78eaf38b0ab4ecf (patch)
treeb30d5232233df84ae4be00c23e94a47caf7c49d5 /docs
parent3cfe719abeaccb99f9857b6ef3da0bbcadab7e03 (diff)
downloadllvm-68ad65c25d66d34098dfa00ae78eaf38b0ab4ecf.tar.gz
llvm-68ad65c25d66d34098dfa00ae78eaf38b0ab4ecf.tar.bz2
llvm-68ad65c25d66d34098dfa00ae78eaf38b0ab4ecf.tar.xz
Remove reference to obsolete arguments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@193009 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/GarbageCollection.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/GarbageCollection.rst b/docs/GarbageCollection.rst
index d78449e95c..73bc5eeb1f 100644
--- a/docs/GarbageCollection.rst
+++ b/docs/GarbageCollection.rst
@@ -905,10 +905,10 @@ in the JIT, nor using the object writers.
X("mygc", "My bespoke garbage collector.");
}
-The collector should use ``AsmPrinter`` and ``TargetAsmInfo`` to print portable
-assembly code to the ``std::ostream``. The collector itself contains the stack
-map for the entire module, and may access the ``GCFunctionInfo`` using its own
-``begin()`` and ``end()`` methods. Here's a realistic example:
+The collector should use ``AsmPrinter`` to print portable assembly code. The
+collector itself contains the stack map for the entire module, and may access
+the ``GCFunctionInfo`` using its own ``begin()`` and ``end()`` methods. Here's
+a realistic example:
.. code-block:: c++