unify {de,}mangle_poll(), get rid of kernel-side POLL...
[cris-mirror.git] / arch / mips / lib / ucmpdi2.c
blobc31c78ca417520011465d0ea69f1066421ff7242
1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/export.h>
4 #include "libgcc.h"
6 word_type notrace __ucmpdi2(unsigned long long a, unsigned long long b)
8 const DWunion au = {.ll = a};
9 const DWunion bu = {.ll = b};
11 if ((unsigned int) au.s.high < (unsigned int) bu.s.high)
12 return 0;
13 else if ((unsigned int) au.s.high > (unsigned int) bu.s.high)
14 return 2;
15 if ((unsigned int) au.s.low < (unsigned int) bu.s.low)
16 return 0;
17 else if ((unsigned int) au.s.low > (unsigned int) bu.s.low)
18 return 2;
19 return 1;
22 EXPORT_SYMBOL(__ucmpdi2);