1 // SPDX-License-Identifier: GPL-2.0-or-later
5 #include <linux/export.h>
7 #include <linux/libgcc.h>
9 long long notrace __ashldi3(long long u, word_type b)
22 w.s.high = (unsigned int) uu.s.low << -bm;
24 const unsigned int carries = (unsigned int) uu.s.low >> bm;
26 w.s.low = (unsigned int) uu.s.low << b;
27 w.s.high = ((unsigned int) uu.s.high << b) | carries;
32 EXPORT_SYMBOL(__ashldi3);