jlebar added inline comments.

================
Comment at: lib/Driver/Driver.cpp:650
@@ -638,3 +649,3 @@
   SmallVector<std::pair<int, const Command *>, 4> FailingCommands;
-  C.ExecuteJobs(C.getJobs(), FailingCommands);
+  C.ExecuteJobs(C.getJobs(), /* StopOnFailure = */ false, FailingCommands);
 
----------------
tra wrote:
> Why is StopOnFailure is false in this case? Shouldn't it obey command line 
> options, too?
This function is called when the compiler has an internal error or crashes.  
The jobs we're executing here are preprocessor jobs dumping debugging info.  I 
figured we should not stop on failure when outputting that info?


http://reviews.llvm.org/D16514



_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to