]> granicus.if.org Git - clang/commitdiff
Implement alignof for vla types.
authorAnders Carlsson <andersca@mac.com>
Sun, 21 Dec 2008 03:48:05 +0000 (03:48 +0000)
committerAnders Carlsson <andersca@mac.com>
Sun, 21 Dec 2008 03:48:05 +0000 (03:48 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@61305 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/CGExprScalar.cpp

index d829facb16d6f0eaf19559c11ea31bfccd8d91a5..a5d5bc22af0eb6749bc3de019eef02c3a9467824 100644 (file)
@@ -670,8 +670,13 @@ ScalarExprEmitter::VisitSizeOfAlignOfExpr(const SizeOfAlignOfExpr *E) {
       }
       return CGF.GetVLASize(VAT);
     }
-    // FIXME: This should be an UNSUPPORTED error.
-    assert(0 && "alignof VLAs not implemented yet");
+    
+    // alignof
+    QualType BaseType = CGF.getContext().getBaseElementType(VAT);
+    uint64_t Align = CGF.getContext().getTypeAlign(BaseType);
+
+    Align /= 8;  // Return alignment in bytes, not bits.
+    return llvm::ConstantInt::get(llvm::APInt(ResultWidth, Align));
   }
   
   std::pair<uint64_t, unsigned> Info = CGF.getContext().getTypeInfo(TypeToSize);