/***/
-/// isEmptyStruct - Return true iff a structure has no non-empty
+/// isEmptyRecord - Return true iff a structure has no non-empty
/// members. Note that a structure with a flexible array member is not
/// considered empty.
-static bool isEmptyStruct(QualType T) {
- const RecordType *RT = T->getAsStructureType();
+static bool isEmptyRecord(QualType T) {
+ const RecordType *RT = T->getAsRecordType();
if (!RT)
return 0;
const RecordDecl *RD = RT->getDecl();
for (RecordDecl::field_iterator i = RD->field_begin(),
e = RD->field_end(); i != e; ++i) {
const FieldDecl *FD = *i;
- if (!isEmptyStruct(FD->getType()))
+ if (!isEmptyRecord(FD->getType()))
return false;
}
return true;
const FieldDecl *FD = *i;
QualType FT = FD->getType();
- if (isEmptyStruct(FT)) {
+ if (isEmptyRecord(FT)) {
// Ignore
} else if (Found) {
return 0;
// tests. This should be the same as @f8_2.
// RUN: grep 'define void @f9_2(%.truct.s9\* byval %a0)' %t &&
-// RUN: true
-
char f0(void) {
}
void f9_2(struct s9 a0) {
}
+// Return of small structures and unions...
+
+// RUN: grep 'float @f10()' %t &&
+struct s10 {
+ union { };
+ float f;
+} f10(void) {}
+
+// RUN: true
+