]> granicus.if.org Git - clang/commitdiff
Correctly error on arrays with automatic storage full of objects with
authorNate Begeman <natebegeman@mac.com>
Fri, 14 Mar 2008 18:07:10 +0000 (18:07 +0000)
committerNate Begeman <natebegeman@mac.com>
Fri, 14 Mar 2008 18:07:10 +0000 (18:07 +0000)
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

Sema/SemaDecl.cpp
test/Sema/address_spaces.c

index 28940ac9392f60d60e874c609e5091f020df52e4..300a38259b6c2903f95038d16f4bc563163c3c09 100644 (file)
@@ -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.
index abf8cbdcebd5ae85a249043a6f476b66c6f39061..002ba1308862ed4c587e46a236d915b84c6dd212 100644 (file)
@@ -8,10 +8,11 @@ void foo(_AS3 float *a) {
   _AS2 *x;
   _AS1 float * _AS2 *B;
 
-  int _AS1 _AS2 *Y;  // expected-error {{multiple address spaces specified for type}}
+  int _AS1 _AS2 *Y;   // expected-error {{multiple address spaces specified for type}}
   int *_AS1 _AS2 *Z;  // expected-error {{multiple address spaces specified for type}}
 
-  _AS1 int local; // expected-error {{automatic variable qualified with an address space}}
+  _AS1 int local;     // expected-error {{automatic variable qualified with an address space}}
+  _AS1 int array[50]; // expected-error {{automatic variable qualified with an address space}}
 
   *a = 5.0f;
 }