From: Daniel Dunbar Date: Wed, 18 Mar 2009 06:09:38 +0000 (+0000) Subject: Driver: Don't claim inputs when pipelining, a tool should eventually X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=028801c66f37d6765ee98f2b1c79e74280ca73e5;p=clang 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 --- 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