2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / config / iq2000 / lib2extra-funcs.c
blobe092babdd1117baec9117adb41b78cba65b15d09
1 typedef unsigned int USItype __attribute__ ((mode (SI)));
3 USItype
4 __mulsi3 (USItype a, USItype b)
6 USItype c = 0;
8 while (a != 0)
10 if (a & 1)
11 c += b;
12 a >>= 1;
13 b <<= 1;
16 return c;