mtd: nand: omap: Fix comment in platform data using wrong Kconfig symbol
[linux/fpc-iii.git] / arch / h8300 / lib / ashldi3.c
blob430720c0c5d874eae9075b0579f062764530c695
1 // SPDX-License-Identifier: GPL-2.0
2 #include "libgcc.h"
4 DWtype
5 __ashldi3(DWtype u, word_type b)
7 const DWunion uu = {.ll = u};
8 const word_type bm = (sizeof (Wtype) * BITS_PER_UNIT) - b;
9 DWunion w;
11 if (b == 0)
12 return u;
14 if (bm <= 0) {
15 w.s.low = 0;
16 w.s.high = (UWtype) uu.s.low << -bm;
17 } else {
18 const UWtype carries = (UWtype) uu.s.low >> bm;
20 w.s.low = (UWtype) uu.s.low << b;
21 w.s.high = ((UWtype) uu.s.high << b) | carries;
24 return w.ll;