summaryrefslogtreecommitdiffstats
path: root/include/clang/Basic/DiagnosticASTKinds.td
diff options
context:
space:
mode:
authorFariborz Jahanian <fjahanian@apple.com>2013-01-25 17:19:07 +0000
committerFariborz Jahanian <fjahanian@apple.com>2013-01-25 17:19:07 +0000
commit78c28be6873965cce4026bbebef18c6224b5287d (patch)
treece1687bb284781b8f44f7e4e0a8f0732e95bf26d /include/clang/Basic/DiagnosticASTKinds.td
parente992ed1a065d857947b3969e6b779c41cc35c234 (diff)
Improve diagnsotic further on integer overflow.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@173461 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 7074e02ad3..08369a589a 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 of constant expression results in value %0 of type %1">,
+ "overflow in expression;result is %0 with type %1">,
InGroup<DiagGroup<"integer-overflow">>;
// inline asm related.