3 long long __ashrdi3(long long u, word_type b)
15 /* w.s.high = 1..1 or 0..0 */
18 w.s.low = uu.s.high >> -bm;
20 const unsigned int carries = (unsigned int) uu.s.high << bm;
22 w.s.high = uu.s.high >> b;
23 w.s.low = ((unsigned int) uu.s.low >> b) | carries;