r241327 - Driver: Replace a couple of out of date terms in the docs

Justin Bogner mail at justinbogner.com
Fri Jul 3 01:03:43 PDT 2015


Author: bogner
Date: Fri Jul  3 03:03:43 2015
New Revision: 241327

URL: http://llvm.org/viewvc/llvm-project?rev=241327&view=rev
Log:
Driver: Replace a couple of out of date terms in the docs

The Job base class was removed in r241310, so replace a couple of
references to it with Command. Also change another use of Job with
Action, since that's the term used in the source.

Modified:
    cfe/trunk/docs/DriverInternals.rst

Modified: cfe/trunk/docs/DriverInternals.rst
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/docs/DriverInternals.rst?rev=241327&r1=241326&r2=241327&view=diff
==============================================================================
--- cfe/trunk/docs/DriverInternals.rst (original)
+++ cfe/trunk/docs/DriverInternals.rst Fri Jul  3 03:03:43 2015
@@ -155,7 +155,7 @@ The driver functionality is conceptually
    Subsequent stages should rarely, if ever, need to do any string
    processing.
 
-#. **Pipeline: Compilation Job Construction**
+#. **Pipeline: Compilation Action Construction**
 
    Once the arguments are parsed, the tree of subprocess jobs needed for
    the desired compilation sequence are constructed. This involves
@@ -266,7 +266,7 @@ The driver functionality is conceptually
 #. **Translate: Tool Specific Argument Translation**
 
    Once a Tool has been selected to perform a particular Action, the
-   Tool must construct concrete Jobs which will be executed during
+   Tool must construct concrete Commands which will be executed during
    compilation. The main work is in translating from the gcc style
    command line options to whatever options the subprocess expects.
 
@@ -280,7 +280,7 @@ The driver functionality is conceptually
    last of arguments corresponding to some option, or all arguments for
    an option.
 
-   The result of this stage is a list of Jobs (executable paths and
+   The result of this stage is a list of Commands (executable paths and
    argument strings) to execute.
 
 #. **Execute**





More information about the cfe-commits mailing list