blob: f0aed8edc36b38c28780c40d22dae5718f013546 [file] [log] [blame]
wdenk4a551702003-10-08 23:26:14 +00001#define BITS_PER_UNIT 8
2
Wolfgang Denk53677ef2008-05-20 16:00:29 +02003typedef int HItype __attribute__ ((mode (HI)));
wdenk4a551702003-10-08 23:26:14 +00004typedef unsigned int UHItype __attribute__ ((mode (HI)));
5
6typedef int SItype __attribute__ ((mode (SI)));
7typedef unsigned int USItype __attribute__ ((mode (SI)));
8
9typedef int word_type __attribute__ ((mode (__word__)));
10
11struct SIstruct {HItype low, high;};
12
13typedef union {
14 struct SIstruct s;
15 SItype ll;
16} SIunion;