diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-03-29 22:23:49 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-03-29 22:23:49 +0000 |
commit | c77b766d221f6030ae509545d6b7c897707ca655 (patch) | |
tree | 811bd3491f6438c7d6a9e1e9d656cd0a99ce8791 | |
parent | 1afabd948520c2607309383655600b46083e083a (diff) |
Fix typo in diagnostic.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@68017 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/Basic/DiagnosticDriverKinds.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Basic/DiagnosticDriverKinds.td b/include/clang/Basic/DiagnosticDriverKinds.td index 760caaae78..9246e7ad28 100644 --- a/include/clang/Basic/DiagnosticDriverKinds.td +++ b/include/clang/Basic/DiagnosticDriverKinds.td @@ -53,6 +53,6 @@ def warn_drv_not_using_clang_cpp : Warning< def warn_drv_not_using_clang_cxx : Warning< "not using the clang compiler for C++ inputs">; def warn_drv_not_using_clang_arch : Warning< - "not using the clang compiler the '%0' architecture">; + "not using the clang compiler for the '%0' architecture">; } |