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