1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/module.h>
3 #include <linux/libgcc.h>
6 unsigned long long ull
;
13 word_type
__ucmpdi2(unsigned long long a
, unsigned long long b
)
15 union ull_union au
= {.ull
= a
};
16 union ull_union bu
= {.ull
= b
};
18 if (au
.ui
.high
< bu
.ui
.high
)
20 else if (au
.ui
.high
> bu
.ui
.high
)
22 if (au
.ui
.low
< bu
.ui
.low
)
24 else if (au
.ui
.low
> bu
.ui
.low
)