diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2013-01-29 10:02:16 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2013-01-29 10:02:16 +0000 |
commit | d03de6aaa312d57dcd6e2bc76bed1e89f5c5019d (patch) | |
tree | 6eb0b96b1c0883d75befbcd1d33e372f78493b93 /test/SemaCXX/cxx11-gnu-attrs.cpp | |
parent | 93384a910cb98f3a128b76e6043f149e1b384c65 (diff) |
Downgrade 'attribute ignored when parsing type' from error to warning, to match
the diagnostic's warn_ name. Switch some places (notably C++11 attributes)
which really wanted an error over to a different diagnostic. Finally, suppress
the diagnostic entirely for __ptr32, __ptr64 and __w64, to avoid producing
diagnostics in important system headers.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@173788 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/SemaCXX/cxx11-gnu-attrs.cpp')
-rw-r--r-- | test/SemaCXX/cxx11-gnu-attrs.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/SemaCXX/cxx11-gnu-attrs.cpp b/test/SemaCXX/cxx11-gnu-attrs.cpp index a9fcee3da3..def83a94ea 100644 --- a/test/SemaCXX/cxx11-gnu-attrs.cpp +++ b/test/SemaCXX/cxx11-gnu-attrs.cpp @@ -5,7 +5,7 @@ [[gnu::this_attribute_does_not_exist]] int unknown_attr; // expected-warning@-1 {{unknown attribute 'this_attribute_does_not_exist' ignored}} int [[gnu::unused]] attr_on_type; -// expected-warning@-1 {{attribute 'unused' ignored, because it is not attached to a declaration}} +// expected-error@-1 {{'unused' attribute cannot be applied to types}} int *[[gnu::unused]] attr_on_ptr; // expected-warning@-1 {{attribute 'unused' ignored, because it cannot be applied to a type}} |