summaryrefslogtreecommitdiff
path: root/include/clang/Basic/DiagnosticParseKinds.td
diff options
context:
space:
mode:
authorAaron Ballman <aaron@aaronballman.com>2014-03-31 18:18:43 +0000
committerAaron Ballman <aaron@aaronballman.com>2014-03-31 18:18:43 +0000
commitba9f3c5926ded09f7cd9268b1f3f1a6d40727e45 (patch)
treed0ea61685d3f69f45739dc2daa1184ec67dcddd3 /include/clang/Basic/DiagnosticParseKinds.td
parent65d1a1961c4157e4b80bb09bade30c3245f4d2b9 (diff)
downloadclang-ba9f3c5926ded09f7cd9268b1f3f1a6d40727e45.tar.gz
clang-ba9f3c5926ded09f7cd9268b1f3f1a6d40727e45.tar.bz2
clang-ba9f3c5926ded09f7cd9268b1f3f1a6d40727e45.tar.xz
Unify __declspec attribute argument parsing with the common attribute argument parsing code.
This removes a diagnostic that is no longer required (the semantic engine now properly handles attribute syntax so __declspec and __attribute__ spellings no longer get mismatched). This caused several testcases to need updating for a slightly different wording. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@205234 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Basic/DiagnosticParseKinds.td')
-rw-r--r--include/clang/Basic/DiagnosticParseKinds.td2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/clang/Basic/DiagnosticParseKinds.td b/include/clang/Basic/DiagnosticParseKinds.td
index f33160c3ef..40fab75f8a 100644
--- a/include/clang/Basic/DiagnosticParseKinds.td
+++ b/include/clang/Basic/DiagnosticParseKinds.td
@@ -535,8 +535,6 @@ def err_l_square_l_square_not_attribute : Error<
"introducing an attribute">;
def err_ms_declspec_type : Error<
"__declspec attributes must be an identifier or string literal">;
-def warn_ms_declspec_unknown : Warning<
- "unknown __declspec attribute %0 ignored">, InGroup<UnknownAttributes>;
def err_ms_property_no_getter_or_putter : Error<
"property does not specify a getter or a putter">;
def err_ms_property_unknown_accessor : Error<