aboutsummaryrefslogtreecommitdiff
path: root/lib/Driver/Driver.cpp
diff options
context:
space:
mode:
authorChad Rosier <mcrosier@apple.com>2011-08-18 00:22:25 +0000
committerChad Rosier <mcrosier@apple.com>2011-08-18 00:22:25 +0000
commit90c88023fd4cb709c8645aa24e9eac420f733b5d (patch)
treec0328478536ba9753a7ecd8c68f1030f1c4283b8 /lib/Driver/Driver.cpp
parent292772c16558cf52a8a01452e259b09d586804ec (diff)
[driver] Don't generate diagnostics (i.e., preprocessed source) if reading
from stdin. This allows Eli and the like to continue with their debugging trickery without loss of limb (or car) on my part. :) git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@137906 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Driver/Driver.cpp')
-rw-r--r--lib/Driver/Driver.cpp16
1 files changed, 14 insertions, 2 deletions
diff --git a/lib/Driver/Driver.cpp b/lib/Driver/Driver.cpp
index 84321139ff..fee601de73 100644
--- a/lib/Driver/Driver.cpp
+++ b/lib/Driver/Driver.cpp
@@ -392,15 +392,27 @@ void Driver::generateCompilationDiagnostics(Compilation &C,
InputList Inputs;
BuildInputs(C.getDefaultToolChain(), C.getArgs(), Inputs);
- // Remove any inputs from the input list that cannot be preprocessed.
for (InputList::iterator it = Inputs.begin(), ie = Inputs.end(); it != ie;) {
- if (types::getPreprocessedType(it->first) == types::TY_INVALID) {
+ bool IgnoreInput = false;
+
+ // Ignore input from stdin or any inputs that cannot be preprocessed.
+ if (!strcmp(it->second->getValue(C.getArgs()), "-")) {
+ Diag(clang::diag::note_drv_command_failed_diag_msg)
+ << "Error generating preprocessed source(s) - ignoring input from stdin"
+ ".";
+ IgnoreInput = true;
+ } else if (types::getPreprocessedType(it->first) == types::TY_INVALID) {
+ IgnoreInput = true;
+ }
+
+ if (IgnoreInput) {
it = Inputs.erase(it);
ie = Inputs.end();
} else {
++it;
}
}
+
if (Inputs.empty()) {
Diag(clang::diag::note_drv_command_failed_diag_msg)
<< "Error generating preprocessed source(s) - no preprocessable inputs.";