1 // SPDX-License-Identifier: GPL-2.0-or-later
5 #include <linux/export.h>
7 #include <linux/libgcc.h>
9 word_type notrace __cmpdi2(long long a, long long b)
18 if (au.s.high < bu.s.high)
20 else if (au.s.high > bu.s.high)
23 if ((unsigned int) au.s.low < (unsigned int) bu.s.low)
25 else if ((unsigned int) au.s.low > (unsigned int) bu.s.low)
30 EXPORT_SYMBOL(__cmpdi2);