1 #include <linux/module.h>
5 long long __ashldi3(long long u, word_type b)
18 w.s.high = (unsigned int) uu.s.low << -bm;
20 const unsigned int carries = (unsigned int) uu.s.low >> bm;
22 w.s.low = (unsigned int) uu.s.low << b;
23 w.s.high = ((unsigned int) uu.s.high << b) | carries;
29 EXPORT_SYMBOL(__ashldi3);