summaryrefslogtreecommitdiff
path: root/docs/DriverInternals.rst
diff options
context:
space:
mode:
authorJustin Bogner <mail@justinbogner.com>2015-07-03 08:03:43 +0000
committerJustin Bogner <mail@justinbogner.com>2015-07-03 08:03:43 +0000
commit64b6f93c5ddb426e894720ed2fb292b841a87913 (patch)
tree3c071c6c7db7394fedff38a80790f56dbaebbaf7 /docs/DriverInternals.rst
parent16bc906be3024f9e3ba3149e26d9d506ae26e2fe (diff)
downloadclang-64b6f93c5ddb426e894720ed2fb292b841a87913.tar.gz
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. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@241327 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/DriverInternals.rst')
-rw-r--r--docs/DriverInternals.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/DriverInternals.rst b/docs/DriverInternals.rst
index 4cd2e5dfe6..6bc5f7dac9 100644
--- a/docs/DriverInternals.rst
+++ b/docs/DriverInternals.rst
@@ -155,7 +155,7 @@ The driver functionality is conceptually divided into five stages:
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 divided into five stages:
#. **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 divided into five stages:
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**