[cfe-commits] r66789 - in /cfe/trunk: Driver/clang.cpp include/clang/Basic/Diagnostic.h include/clang/Basic/DiagnosticDriverKinds.td include/clang/Basic/DiagnosticFrontendKinds.def include/clang/Basic/DiagnosticFrontendKinds.td include/clang/Frontend/FrontendDiagnostic.h lib/Basic/Diagnostic.cpp test/Analysis/CGColorSpace.c

Sebastian Redl sebastian.redl at getdesigned.at
Thu Mar 12 09:05:51 PDT 2009


Daniel Dunbar wrote:
> Author: ddunbar
> Date: Thu Mar 12 05:14:16 2009
> New Revision: 66789
>
> --- cfe/trunk/include/clang/Basic/DiagnosticDriverKinds.td (original)
> +++ cfe/trunk/include/clang/Basic/DiagnosticDriverKinds.td Thu Mar 12 05:14:16 2009
> @@ -9,10 +9,10 @@
>  
>  let Component = "Driver" in {
>  
> -def driver_no_such_file : Error<"no such file or directory: '%0'">
> -def driver_unsupported_opt : Error<"unsupported option '%0'">
> -def driver_unknown_stdin_type : Error<
> +def err_drv_no_such_file : Error<"no such file or directory: '%0'">
> +def err_drv_unsupported_opt : Error<"unsupported option '%0'">
> +def err_drv_unknown_stdin_type : Error<
>      "-E or -x required when input is from standard input">
> -def driver_unknown_language : Error<"language not recognized: '%0'">
> +def err_drv_unknown_language : Error<"language not recognized: '%0'">
>  
>   
Very commendable, but there's no point in keeping these in sync yet.
I'll just regenerate them all when we're ready to make the switch anyway.

Sebastian



More information about the cfe-commits mailing list