https://gcc.gnu.org/bugzilla/show_bug.cgi?id=102296
Bug ID: 102296
Summary: ELF symbol sizes for variable-length objects are
broken
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: i?86-*-*-solaris* x86_64-*-solaris*
Take:
struct blah
{
float foo;
int i[];
};
struct blah b = { 42.0, { 1, 2, 3, 4, 0 } };
The code in config/i386/sol2.h (ASM_DECLARE_OBJECT_NAME) Uses TYPE_SIZE rather
than DECL_SIZE like config/elfos.h does.