fixes for host gcc 4.6.1
[zpugcc/jano.git] / toolchain / gcc / newlib / libc / machine / h8500 / mulhi3.c
blob869e131ea77004252cc5957b2d289448f24179c4
3 short
4 __mulhi3(short a, short b)
6 int r;
8 r = 0;
9 while (a)
11 if (a & 1)
13 r += b;
14 a>>=1;
15 b<<=1;
18 return r;