From: ceriel Date: Mon, 27 Jul 1992 13:28:49 +0000 (+0000) Subject: Fix: always assumed that base type of bitfield had sizeof(int) X-Git-Tag: release-5-5~413 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=52620e582998eccd442b37f0b98024f2825bd327;p=ack.git Fix: always assumed that base type of bitfield had sizeof(int) --- diff --git a/lang/cem/cemcom/struct.c b/lang/cem/cemcom/struct.c index 2182ccfc2..9f9d0d76d 100644 --- a/lang/cem/cemcom/struct.c +++ b/lang/cem/cemcom/struct.c @@ -366,11 +366,7 @@ add_field(szp, fd, fdtpp, idf, stp) Note that the fields are packed into machine words (according to the RM.) */ -#ifdef word_size -#define bits_in_type ((int)(8*word_size)) -#else - int bits_in_type = word_size * 8; -#endif + int bits_in_type = (int) (*fdtpp)->tp_size * 8; static int field_offset = (arith)0; static struct type *current_struct = 0; static int bits_declared; /* nr of bits used in *field_offset */