]> granicus.if.org Git - clang/commitdiff
Driver: Tweak diag names to be more consistent.
authorDaniel Dunbar <daniel@zuster.org>
Thu, 12 Mar 2009 09:13:48 +0000 (09:13 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Thu, 12 Mar 2009 09:13:48 +0000 (09:13 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@66787 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Basic/DiagnosticDriverKinds.def
lib/Driver/Driver.cpp

index aaa1f2017060628811850c7500e38e97d9d5183f..9cdc6e387b428b128f0346c5d5d8ff802f8d0f63 100644 (file)
@@ -12,11 +12,11 @@ __DRIVERSTART      =  DIAG_START_DRIVER,
 #undef DRIVERSTART
 #endif
 
-DIAG(driver_no_such_file, ERROR,
+DIAG(err_drv_no_such_file, ERROR,
      "no such file or directory: '%0'")
-DIAG(driver_unsupported_opt, ERROR,
+DIAG(err_drv_unsupported_opt, ERROR,
      "unsupported option '%0'")
-DIAG(driver_unknown_stdin_type, ERROR,
+DIAG(err_drv_unknown_stdin_type, ERROR,
      "-E or -x required when input is from standard input")
-DIAG(driver_unknown_language, ERROR,
+DIAG(err_drv_unknown_language, ERROR,
      "language not recognized: '%0'")
index 90cf6828e0fd85836de2a15d0a7cf17079a7ee72..61cc89545cc6c80509bc5597f4d3ee4ee3ac4477 100644 (file)
@@ -48,7 +48,7 @@ ArgList *Driver::ParseArgStrings(const char **ArgBegin, const char **ArgEnd) {
     Arg *A = getOpts().ParseOneArg(*Args, Index, End);
     if (A) {
       if (A->getOption().isUnsupported()) {
-        Diag(clang::diag::driver_unsupported_opt) << A->getOption().getName();
+        Diag(clang::diag::err_drv_unsupported_opt) << A->getOption().getName();
         continue;
       }
 
@@ -201,7 +201,7 @@ void Driver::BuildActions(const ArgList &Args,
           // Otherwise emit an error but still use a valid type to
           // avoid spurious errors (e.g., no inputs).
           if (!Args.hasArg(options::OPT_E))
-            Diag(clang::diag::driver_unknown_stdin_type);
+            Diag(clang::diag::err_drv_unknown_stdin_type);
           Ty = types::TY_C;
         } else {
           // Otherwise lookup by extension, and fallback to ObjectType
@@ -235,7 +235,7 @@ void Driver::BuildActions(const ArgList &Args,
       // just adds an extra stat to the equation, but this is gcc
       // compatible.
       if (memcmp(Value, "-", 2) != 0 && !llvm::sys::Path(Value).exists())
-        Diag(clang::diag::driver_no_such_file) << A->getValue(Args);
+        Diag(clang::diag::err_drv_no_such_file) << A->getValue(Args);
       else
         Inputs.push_back(std::make_pair(Ty, A));
 
@@ -253,7 +253,7 @@ void Driver::BuildActions(const ArgList &Args,
       // unknown; but this isn't very important, we might as well be
       // bug comatible.
       if (!InputType) {
-        Diag(clang::diag::driver_unknown_language) << A->getValue(Args);
+        Diag(clang::diag::err_drv_unknown_language) << A->getValue(Args);
         InputType = types::TY_Object;
       }
     }