summaryrefslogtreecommitdiff
path: root/include/clang/Basic/DiagnosticSemaKinds.td
diff options
context:
space:
mode:
authorSunil Srivastava <sunil_srivastava@playstation.sony.com>2019-07-17 20:41:26 +0000
committerSunil Srivastava <sunil_srivastava@playstation.sony.com>2019-07-17 20:41:26 +0000
commitbb4fb0414e9d6a4677aef1cc8cdfdcb5fca43ede (patch)
treeafe0c68edc74fb540ed775a74c77f0f0af1fa6fb /include/clang/Basic/DiagnosticSemaKinds.td
parent2688e5894f901b98369460f563614d2a4ee4bb0e (diff)
downloadclang-bb4fb0414e9d6a4677aef1cc8cdfdcb5fca43ede.tar.gz
Renamed and changed the wording of warn_cconv_ignored
As discussed in D64780 the wording of this warning message is being changed to say 'is not supported' instead of 'ignored', and the diag ID itself is being changed to warn_cconv_not_supported. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@366368 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Basic/DiagnosticSemaKinds.td')
-rw-r--r--include/clang/Basic/DiagnosticSemaKinds.td4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/clang/Basic/DiagnosticSemaKinds.td b/include/clang/Basic/DiagnosticSemaKinds.td
index c68271b784..effcbad78b 100644
--- a/include/clang/Basic/DiagnosticSemaKinds.td
+++ b/include/clang/Basic/DiagnosticSemaKinds.td
@@ -2957,8 +2957,8 @@ def err_attribute_vecreturn_only_pod_record : Error<
def err_cconv_change : Error<
"function declared '%0' here was previously declared "
"%select{'%2'|without calling convention}1">;
-def warn_cconv_ignored : Warning<
- "%0 calling convention ignored %select{"
+def warn_cconv_unsupported : Warning<
+ "%0 calling convention is not supported %select{"
// Use CallingConventionIgnoredReason Enum to specify these.
"for this target"
"|on variadic function"