diff options
author | Bill Wendling <isanbard@gmail.com> | 2013-10-18 23:11:25 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2013-10-18 23:11:25 +0000 |
commit | 0b55b4a20893fe0e9aa0881d70db0cf07052d20c (patch) | |
tree | 39dac214c83287a68b67127c7d3cb5eccaeb3781 /llvm/docs/GarbageCollection.rst | |
parent | 547a7afd32b44a0c0b116222728250a56b4ecca3 (diff) | |
download | bcm5719-llvm-0b55b4a20893fe0e9aa0881d70db0cf07052d20c.tar.gz bcm5719-llvm-0b55b4a20893fe0e9aa0881d70db0cf07052d20c.zip |
Remove reference to obsolete arguments.
llvm-svn: 193009
Diffstat (limited to 'llvm/docs/GarbageCollection.rst')
-rw-r--r-- | llvm/docs/GarbageCollection.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/docs/GarbageCollection.rst b/llvm/docs/GarbageCollection.rst index d78449e95cb..73bc5eeb1ff 100644 --- a/llvm/docs/GarbageCollection.rst +++ b/llvm/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++ |