Remove reference to obsolete arguments.

llvm-svn: 193009
This commit is contained in:
Bill Wendling 2013-10-18 23:11:25 +00:00
parent 547a7afd32
commit 0b55b4a208
1 changed files with 4 additions and 4 deletions

View File

@ -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++