Format,
Visibility,
FastCall,
- StdCall
+ StdCall,
+ TransparentUnion
};
private:
static bool classof(const StdCallAttr *A) { return true; }
};
+class TransparentUnionAttr : public Attr {
+public:
+ TransparentUnionAttr() : Attr(TransparentUnion) {}
+
+ // Implement isa/cast/dyncast/etc.
+
+ static bool classof(const Attr *A) { return A->getKind() == TransparentUnion; }
+ static bool classof(const TransparentUnionAttr *A) { return true; }
+};
+
} // end namespace clang
#endif
case 15:
if (!memcmp(Str, "ext_vector_type", 15)) return AT_ext_vector_type;
break;
+ case 17:
+ if (!memcmp(Str, "transparent_union", 17)) return AT_transparent_union;
+ break;
case 18:
if (!memcmp(Str, "warn_unused_result", 18)) return AT_warn_unused_result;
break;
void HandleFormatAttribute(Decl *d, AttributeList *rawAttr);
void HandleStdCallAttribute(Decl *d, AttributeList *rawAttr);
void HandleFastCallAttribute(Decl *d, AttributeList *rawAttr);
+ void HandleTransparentUnionAttribute(Decl *d, AttributeList *rawAttr);
void WarnUndefinedMethod(SourceLocation ImpLoc, ObjCMethodDecl *method,
bool &IncompleteImpl);
case AttributeList::AT_format:
HandleFormatAttribute(New, Attr);
break;
+ case AttributeList::AT_transparent_union:
+ HandleTransparentUnionAttribute(New, Attr);
+ break;
default:
#if 0
// TODO: when we have the full set of attributes, warn about unknown ones.
Idx.getZExtValue(), FirstArg.getZExtValue()));
}
+void Sema::HandleTransparentUnionAttribute(Decl *d, AttributeList *rawAttr) {
+ // check the attribute arguments.
+ if (rawAttr->getNumArgs() != 0) {
+ Diag(rawAttr->getLoc(), diag::err_attribute_wrong_number_arguments,
+ std::string("0"));
+ return;
+ }
+
+ TypeDecl *decl = dyn_cast<TypeDecl>(d);
+
+ if (!decl || !Context.getTypeDeclType(decl)->isUnionType()) {
+ Diag(rawAttr->getLoc(), diag::warn_attribute_wrong_decl_type,
+ "transparent_union", "union");
+ return;
+ }
+
+ QualType QTy = Context.getTypeDeclType(decl);
+ const RecordType *Ty = QTy->getAsUnionType();
+
+// FIXME
+// Ty->addAttr(new TransparentUnionAttr());
+}
+
void Sema::HandleAnnotateAttribute(Decl *d, AttributeList *rawAttr) {
// check the attribute arguments.
if (rawAttr->getNumArgs() != 1) {