[cfe-commits] r67171 - /cfe/trunk/lib/Driver/Driver.cpp
Daniel Dunbar
daniel at zuster.org
Tue Mar 17 23:09:39 PDT 2009
Author: ddunbar
Date: Wed Mar 18 01:09:38 2009
New Revision: 67171
URL: http://llvm.org/viewvc/llvm-project?rev=67171&view=rev
Log:
Driver: Don't claim inputs when pipelining, a tool should eventually
claim these.
Modified:
cfe/trunk/lib/Driver/Driver.cpp
Modified: cfe/trunk/lib/Driver/Driver.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Driver/Driver.cpp?rev=67171&r1=67170&r2=67171&view=diff
==============================================================================
--- cfe/trunk/lib/Driver/Driver.cpp (original)
+++ cfe/trunk/lib/Driver/Driver.cpp Wed Mar 18 01:09:38 2009
@@ -437,7 +437,6 @@
// 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
More information about the cfe-commits
mailing list