https://gcc.gnu.org/bugzilla/show_bug.cgi?id=102298
Bug ID: 102298
Summary: ELF symbol sizes for variable-length objects are too
small (mips)
Product: gcc
Version: 12.0
Status: UNCONFIRMED
Keywords: wrong-code
Severity: normal
Priority: P3
Component: target
Assignee: unassigned at gcc dot gnu.org
Reporter: pinskia at gcc dot gnu.org
Target Milestone: ---
Target: mips*-*-elf mips*-*-linux*
Take:
struct blah
{
float foo;
int i[];
};
struct blah b = { 42.0, { 1, 2, 3, 4, 0 } };
The code in config/mips/mips.c
(mips_declare_object_name/mips_finish_declare_object) Uses TYPE_SIZE rather
than DECL_SIZE like config/elfos.h does.