This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

When exactly does a type have a variable length?


Hi,

While looking at *_return_in_memory() that do not care about
int_size_in_bytes(type) returning -1, I came up with the following
series of questions.

Does int_size_in_bytes(type) == -1 necessarily imply that
TYPE_MODE (type) == BLKmode?

Does int_size_in_bytes(type) == -1 necessarily imply that
AGGREGATE_TYPE_P (type)?

Does TYPE_MODE (type) == BLKmode hold if and only if
AGGREGATE_TYPE_P (type) == 1?

Thanks,

Kazu Hirata


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]