aboutsummaryrefslogtreecommitdiff
path: root/lib/Driver
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-03-18 06:09:38 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-03-18 06:09:38 +0000
commit028801c66f37d6765ee98f2b1c79e74280ca73e5 (patch)
tree26c7288db6a336f23ae4d7ed954b06bfd5143780 /lib/Driver
parent62cf601812e03dd9bc5df42b8ef06a0cdedc38bf (diff)
Driver: Don't claim inputs when pipelining, a tool should eventually
claim these. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@67171 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Driver')
-rw-r--r--lib/Driver/Driver.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/Driver/Driver.cpp b/lib/Driver/Driver.cpp
index 35b206600d..7d94c08283 100644
--- a/lib/Driver/Driver.cpp
+++ b/lib/Driver/Driver.cpp
@@ -437,7 +437,6 @@ void Driver::BuildActions(const ArgList &Args, ActionList &Actions) const {
// doing, since the tool presumably does this anyway, and this
// just adds an extra stat to the equation, but this is gcc
// compatible.
- A->claim();
if (memcmp(Value, "-", 2) != 0 && !llvm::sys::Path(Value).exists())
Diag(clang::diag::err_drv_no_such_file) << A->getValue(Args);
else