From 69fdb57eddd00c592828605819f0678522d346c6 Mon Sep 17 00:00:00 2001 From: grischka Date: Wed, 17 Jun 2009 02:09:07 +0200 Subject: [PATCH] unions: initzialize only one field struct { union { int a,b; }; int c; } sss = { 1,2 }; This had previously assigned 1,2 to a,b and 0 to c which is wrong. --- tccgen.c | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/tccgen.c b/tccgen.c index fcfaa7ee..05eb6464 100644 --- a/tccgen.c +++ b/tccgen.c @@ -4530,6 +4530,24 @@ static void decl_initializer(CType *type, Section *sec, unsigned long c, index = index + type_size(&f->type, &align1); if (index > array_length) array_length = index; + + /* gr: skip fields from same union - ugly. */ + while (f->next) { + ///printf("index: %2d %08x -- %2d %08x\n", f->c, f->type.t, f->next->c, f->next->type.t); + /* test for same offset */ + if (f->next->c != f->c) + break; + /* if yes, test for bitfield shift */ + if ((f->type.t & VT_BITFIELD) && (f->next->type.t & VT_BITFIELD)) { + int bit_pos_1 = (f->type.t >> VT_STRUCT_SHIFT) & 0x3f; + int bit_pos_2 = (f->next->type.t >> VT_STRUCT_SHIFT) & 0x3f; + //printf("bitfield %d %d\n", bit_pos_1, bit_pos_2); + if (bit_pos_1 != bit_pos_2) + break; + } + f = f->next; + } + f = f->next; if (no_oblock && f == NULL) break; -- 2.11.4.GIT