[PATCH] D109136: Removed "someone" expression.
Yuichi Yoshida via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Sep 2 01:07:07 PDT 2021
sonson created this revision.
sonson added reviewers: mehdi_amini, lhames, xgupta.
sonson requested review of this revision.
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.
I replaced the sentence pointed out by three reviewers with the current one.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D109136
Files:
llvm/docs/tutorial/BuildingAJIT2.rst
Index: llvm/docs/tutorial/BuildingAJIT2.rst
===================================================================
--- llvm/docs/tutorial/BuildingAJIT2.rst
+++ llvm/docs/tutorial/BuildingAJIT2.rst
@@ -229,7 +229,7 @@
interface that ORC can call as needed. The add method takes an
module in some input program representation (in this case an LLVM IR module)
and stores it in the target ``JITDylib``, arranging for it to be passed back
-to layer's emit method when someone requests any symbols defined by the module.
+to layer's emit method when any symbol defined by that module is requested.
Each layer can complete its own work by calling the ``emit`` method of its base
layer. For example, in this tutorial our IRTransformLayer calls through to
our IRCompileLayer to compile the transformed IR, and our IRCompileLayer in
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D109136.370181.patch
Type: text/x-patch
Size: 827 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210902/9e70f180/attachment.bin>
More information about the llvm-commits
mailing list