]> granicus.if.org Git - clang/commitdiff
Driver: Don't warn about unused arguments if there are Driver errors
authorDaniel Dunbar <daniel@zuster.org>
Wed, 18 Mar 2009 18:03:46 +0000 (18:03 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Wed, 18 Mar 2009 18:03:46 +0000 (18:03 +0000)
(brings code in line with diagnostic.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@67217 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Driver/Driver.cpp

index d539070d5dfc135accd5d547982f5089d87ecddb..03138bf0eeb858fc1c3779b0a9b267e5af4a040b 100644 (file)
@@ -653,11 +653,14 @@ void Driver::BuildJobs(Compilation &C) const {
                        II);
   }
 
-  // If there were no errors, warn about any unused arguments.
+  // If there were errors, don't warn about any unused arguments.
+  if (Diags.getNumErrors())
+    return;
+
   for (ArgList::const_iterator it = C.getArgs().begin(), ie = C.getArgs().end();
        it != ie; ++it) {
     Arg *A = *it;
-
+      
     // FIXME: It would be nice to be able to send the argument to the
     // Diagnostic, so that extra values, position, and so on could be
     // printed.