aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2009-03-13 20:45:13 +0000
committerTed Kremenek <kremenek@apple.com>2009-03-13 20:45:13 +0000
commit88ef4c48277cb2444d57e67fd5234d9b0509d7e9 (patch)
treeccb33e22c27c525bca688786468c200870b91b30
parent83df91b63b74b19cdd79bdee2aeca6b9bef1c182 (diff)
Add missing ';'.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@66943 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/clang/Basic/DiagnosticDriverKinds.td12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/clang/Basic/DiagnosticDriverKinds.td b/include/clang/Basic/DiagnosticDriverKinds.td
index 29eb259001..e375a70d31 100644
--- a/include/clang/Basic/DiagnosticDriverKinds.td
+++ b/include/clang/Basic/DiagnosticDriverKinds.td
@@ -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">;
}