On Monday 11 February 2002 15:37, Gregor N. Purdy wrote: > IIRC sizeof(opcode_t) === 4, since it is required that opcode_t be 32 > bits. So, that 4 is supposed to be a 4, although turning it into a > symbolic constant is not a bad idea. Using sizeof(opcode_t) as that > constant isn't evil either, although I don't think its necessary. Nope. sizeof(opcode_t) >= 32 and sizeof(opcode_t) <= sizeof(INTVAL). The *contents* are limited to 32 bits, but the container is not. (64-bit efficiency hack.) -- Bryan C. Warnock bwarnock@capita.comThread Previous | Thread Next