1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/module.h>
5 unsigned long long ull
;
12 int __ucmpdi2(unsigned long long a
, unsigned long long b
)
14 union ull_union au
= {.ull
= a
};
15 union ull_union bu
= {.ull
= b
};
17 if (au
.ui
.high
< bu
.ui
.high
)
19 else if (au
.ui
.high
> bu
.ui
.high
)
21 if (au
.ui
.low
< bu
.ui
.low
)
23 else if (au
.ui
.low
> bu
.ui
.low
)