MINI2440: Removed unneeded dependency
[u-boot-openmoko/mini2440.git] / lib_nios2 / math.h
blobccffbbc2e7008aadd1ecc8c7b78ec74f39470d5b
1 #define BITS_PER_UNIT 8
3 typedef int HItype __attribute__ ((mode (HI)));
4 typedef unsigned int UHItype __attribute__ ((mode (HI)));
6 typedef int SItype __attribute__ ((mode (SI)));
7 typedef unsigned int USItype __attribute__ ((mode (SI)));
9 typedef int word_type __attribute__ ((mode (__word__)));
11 struct SIstruct {HItype low, high;};
13 typedef union {
14 struct SIstruct s;
15 SItype ll;
16 } SIunion;