summaryrefslogtreecommitdiffstats
path: root/include/clang/Basic/DiagnosticASTKinds.td
diff options
context:
space:
mode:
authorFariborz Jahanian <fjahanian@apple.com>2013-01-24 23:24:32 +0000
committerFariborz Jahanian <fjahanian@apple.com>2013-01-24 23:24:32 +0000
commita7972a08e0fb16e5e7e8364ab6fc8889debf18ab (patch)
tree3058e06e974ed62efb5521913f0d59fc083407dc /include/clang/Basic/DiagnosticASTKinds.td
parent0a04cbd98f65827918e857e7ab5597676b9d8e3b (diff)
Fixes text of diagnostics in integer overflow patch.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@173388 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Basic/DiagnosticASTKinds.td')
-rw-r--r--include/clang/Basic/DiagnosticASTKinds.td2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Basic/DiagnosticASTKinds.td b/include/clang/Basic/DiagnosticASTKinds.td
index a54f39e1ee..7074e02ad3 100644
--- a/include/clang/Basic/DiagnosticASTKinds.td
+++ b/include/clang/Basic/DiagnosticASTKinds.td
@@ -107,7 +107,7 @@ def note_constexpr_calls_suppressed : Note<
"see all)">;
def note_constexpr_call_here : Note<"in call to '%0'">;
def warn_integer_constant_overflow : Warning<
- "overflow in case constant expression results in value %0 of type %1">,
+ "overflow of constant expression results in value %0 of type %1">,
InGroup<DiagGroup<"integer-overflow">>;
// inline asm related.