/*1* Copyright 2004-2009 Analog Devices Inc.2*3* Licensed under the GPL-2 or later.4*/56#define BITS_PER_UNIT 87#define SI_TYPE_SIZE (sizeof (SItype) * BITS_PER_UNIT)89typedef unsigned int UQItype __attribute__ ((mode(QI)));10typedef int SItype __attribute__ ((mode(SI)));11typedef unsigned int USItype __attribute__ ((mode(SI)));12typedef int DItype __attribute__ ((mode(DI)));13typedef int word_type __attribute__ ((mode(__word__)));14typedef unsigned int UDItype __attribute__ ((mode(DI)));1516struct DIstruct {17SItype low, high;18};1920typedef union {21struct DIstruct s;22DItype ll;23} DIunion;242526