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