[cfe-commits] r66943 - /cfe/trunk/include/clang/Basic/DiagnosticDriverKinds.td

Ted Kremenek kremenek at apple.com
Fri Mar 13 13:45:14 PDT 2009


Author: kremenek
Date: Fri Mar 13 15:45:13 2009
New Revision: 66943

URL: http://llvm.org/viewvc/llvm-project?rev=66943&view=rev
Log:
Add missing ';'.

Modified:
    cfe/trunk/include/clang/Basic/DiagnosticDriverKinds.td

Modified: cfe/trunk/include/clang/Basic/DiagnosticDriverKinds.td
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Basic/DiagnosticDriverKinds.td?rev=66943&r1=66942&r2=66943&view=diff

==============================================================================
--- cfe/trunk/include/clang/Basic/DiagnosticDriverKinds.td (original)
+++ cfe/trunk/include/clang/Basic/DiagnosticDriverKinds.td Fri Mar 13 15:45:13 2009
@@ -9,14 +9,14 @@
 
 let Component = "Driver" in {
 
-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_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 err_drv_unknown_language : Error<"language not recognized: '%0'">
+    "-E or -x required when input is from standard input">;
+def err_drv_unknown_language : Error<"language not recognized: '%0'">;
 def err_drv_invalid_opt_with_multiple_archs : Error<
-     "option '%0' cannot be used with multiple -arch options">
+     "option '%0' cannot be used with multiple -arch options">;
 def err_drv_invalid_output_with_multiple_archs : Error<
-     "cannot use '%0' output with multiple -arch options">
+     "cannot use '%0' output with multiple -arch options">;
 
 }





More information about the cfe-commits mailing list