const RecordDecl *RD = RT->getDecl();
- // The only case a 256-bit wide vector could be used is when the struct
- // contains a single 256-bit element. Since Lo and Hi logic isn't extended
- // to work for sizes wider than 128, early check and fallback to memory.
- RecordDecl::field_iterator FirstElt = RD->field_begin();
- if (Size > 128 && getContext().getTypeSize(FirstElt->getType()) != 256)
- return;
-
// Assume variable sized types are passed in memory.
if (RD->hasFlexibleArrayMember())
return;
// Classify the fields one at a time, merging the results.
unsigned idx = 0;
- for (RecordDecl::field_iterator i = FirstElt, e = RD->field_end();
+ for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end();
i != e; ++i, ++idx) {
uint64_t Offset = OffsetBase + Layout.getFieldOffset(idx);
bool BitField = i->isBitField();
// The two next tests make sure that the struct below is passed
// in the same way regardless of avx being used
-// CHECK: declare void @func40(%struct.t128* byval align 16)
+// TOBECHECKED: declare void @func40(%struct.t128* byval align 16)
typedef float __m128 __attribute__ ((__vector_size__ (16)));
typedef struct t128 {
__m128 m;
func40(s);
}
-// CHECK: declare void @func42(%struct.t128_2* byval align 16)
+// TOBECHECKED: declare void @func42(%struct.t128_2* byval align 16)
typedef struct xxx {
__m128 array[2];
} Atwo128;