aboutsummaryrefslogtreecommitdiff
path: root/tools/ccc/ccclib/Tools.py
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-01-06 06:12:13 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-01-06 06:12:13 +0000
commitba6e323fd66f1e091329e7863281f1a17e18e850 (patch)
treef602234e32d41cdc1dc4bbde4906cd62440e1538 /tools/ccc/ccclib/Tools.py
parent3932fe05a12a27cb36b131ea89202311ee8cb66d (diff)
ccc: Track last actual argument instance for each option & change
driver to lookup this way instead of manually scanning arguments in multiple places. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@61793 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/ccc/ccclib/Tools.py')
-rw-r--r--tools/ccc/ccclib/Tools.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/ccc/ccclib/Tools.py b/tools/ccc/ccclib/Tools.py
index ddfb02916e..1468fe899c 100644
--- a/tools/ccc/ccclib/Tools.py
+++ b/tools/ccc/ccclib/Tools.py
@@ -3,7 +3,7 @@ import Jobs
import Types
class Tool(object):
- """Tool - A concrete implementation of a phase."""
+ """Tool - A concrete implementation of an action."""
eFlagsPipedInput = 1 << 0
eFlagsPipedOutput = 1 << 1