1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/module.h>
6 word_type
__cmpdi2(long long a
, long long b
)
15 if (au
.s
.high
< bu
.s
.high
)
17 else if (au
.s
.high
> bu
.s
.high
)
20 if ((unsigned int) au
.s
.low
< (unsigned int) bu
.s
.low
)
22 else if ((unsigned int) au
.s
.low
> (unsigned int) bu
.s
.low
)
28 EXPORT_SYMBOL(__cmpdi2
);