[llvm] r230570 - [GC Docs] Minor wording clarification

Philip Reames listmail at philipreames.com
Wed Feb 25 15:07:34 PST 2015


Author: reames
Date: Wed Feb 25 17:07:34 2015
New Revision: 230570

URL: http://llvm.org/viewvc/llvm-project?rev=230570&view=rev
Log:
[GC Docs] Minor wording clarification


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=230570&r1=230569&r2=230570&view=diff
==============================================================================
--- llvm/trunk/docs/GarbageCollection.rst (original)
+++ llvm/trunk/docs/GarbageCollection.rst Wed Feb 25 17:07:34 2015
@@ -247,9 +247,9 @@ Using ``llvm.gcwrite``
 
 The ``llvm.gcroot`` intrinsic is used to inform LLVM that a stack variable
 references an object on the heap and is to be tracked for garbage collection.
-The exact impact on generated code is specified by a :ref:`compiler plugin
-<plugin>`.  All calls to ``llvm.gcroot`` **must** reside inside the first basic
-block.
+The exact impact on generated code is specified by the Function's selected 
+:ref:`GC strategy <plugin>`.  All calls to ``llvm.gcroot`` **must** reside 
+inside the first basic block.
 
 The first argument **must** be a value referring to an alloca instruction or a
 bitcast of an alloca.  The second contains a pointer to metadata that should be





More information about the llvm-commits mailing list