diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2015-12-01 06:22:10 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2015-12-01 06:22:10 -0800 |
commit | 4e92c2d19382340d8e6c8fe71013d02bbc6065f4 (patch) | |
tree | e146a1e44d81a8b1b4bb3ea070d72a16c7527680 /struct.c | |
parent | 121a9209a20d5789f693c77e4fbe74522506f74d (diff) | |
download | txr-4e92c2d19382340d8e6c8fe71013d02bbc6065f4.tar.gz txr-4e92c2d19382340d8e6c8fe71013d02bbc6065f4.tar.bz2 txr-4e92c2d19382340d8e6c8fe71013d02bbc6065f4.zip |
Bugfix: structs not inheriting late static slot values.
This bug doesn't affect static slots that are defined in
defstruct, because those get initialized in the new type by
the static init function.
The bug is that the values of static slots added later with
static_slot_ensure are not inherited by subtypes that are
created later still.
(Since static_slot_ensure propagates a slot to subtypes which
already exist, those types get the slot value.)
* struct.c (make_struct_type): Copy the contents of the
static slot array of the supertype into the new type,
so that static slot values are inherited. We can just use
memcpy because the ordering of static slots is the same
in the new type, and the inherited ones precede the
new ones, due to the way the all_slots list is combined.
* txr.1: Clarify inheritance of static slots.
Diffstat (limited to 'struct.c')
-rw-r--r-- | struct.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -276,8 +276,10 @@ val make_struct_type(val name, val super, sethash(struct_type_hash, name, stype); - if (super) + if (super) { mpush(stype, mkloc(su->dvtypes, super)); + memcpy(st->stslot, su->stslot, sizeof (val) * su->nstslots); + } call_stinitfun_chain(st, stype); |