aboutsummaryrefslogtreecommitdiff
path: root/Sema/SemaDecl.cpp
diff options
context:
space:
mode:
authorNate Begeman <natebegeman@mac.com>2008-03-14 18:07:10 +0000
committerNate Begeman <natebegeman@mac.com>2008-03-14 18:07:10 +0000
commitc8e89a8ce5057750c338854085dca26f8d3136ac (patch)
tree51e6e599d95919085726368000f3ed2d7b59d404 /Sema/SemaDecl.cpp
parent63bbe5312cd89ce0ceb684bff68c5baef636e93c (diff)
Correctly error on arrays with automatic storage full of objects with
non-default address space, and fix comment. Add a test for this. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@48366 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Sema/SemaDecl.cpp')
-rw-r--r--Sema/SemaDecl.cpp19
1 files changed, 13 insertions, 6 deletions
diff --git a/Sema/SemaDecl.cpp b/Sema/SemaDecl.cpp
index 28940ac939..300a38259b 100644
--- a/Sema/SemaDecl.cpp
+++ b/Sema/SemaDecl.cpp
@@ -800,12 +800,19 @@ Sema::ActOnDeclarator(Scope *S, Declarator &D, DeclTy *lastDecl) {
// Handle attributes prior to checking for duplicates in MergeVarDecl
HandleDeclAttributes(NewVD, D.getDeclSpec().getAttributes(),
D.getAttributes());
- // Emit a warning (error?) if an address space was applied to decl with
- // local storage.
- if (NewVD->hasLocalStorage() &&
- (NewVD->getCanonicalType().getAddressSpace() != 0)) {
- Diag(D.getIdentifierLoc(), diag::err_as_qualified_auto_decl);
- InvalidDecl = true;
+
+ // Emit an error if an address space was applied to decl with local storage.
+ // This includes arrays of objects with address space qualifiers, but not
+ // automatic variables that point to other address spaces.
+ // ISO/IEC TR 18037 S5.1.2
+ if (NewVD->hasLocalStorage()) {
+ QualType AutoTy = NewVD->getCanonicalType();
+ if (const ArrayType *AT = AutoTy->getAsArrayType())
+ AutoTy = AT->getElementType().getCanonicalType();
+ if (AutoTy.getAddressSpace() != 0) {
+ Diag(D.getIdentifierLoc(), diag::err_as_qualified_auto_decl);
+ InvalidDecl = true;
+ }
}
// Merge the decl with the existing one if appropriate. If the decl is
// in an outer scope, it isn't the same thing.