blob: c31c78ca417520011465d0ea69f1066421ff7242 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Paul Gortmaker527581b2016-08-21 15:58:15 -04002#include <linux/export.h>
Thiemo Seuferdf6b1062007-05-01 19:14:16 +01003
4#include "libgcc.h"
5
Harvey Huntaedcfbe2016-05-25 11:06:35 +01006word_type notrace __ucmpdi2(unsigned long long a, unsigned long long b)
Thiemo Seuferdf6b1062007-05-01 19:14:16 +01007{
8 const DWunion au = {.ll = a};
9 const DWunion bu = {.ll = b};
10
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;
20}
Ralf Baechle41770172008-03-04 09:03:09 +000021
22EXPORT_SYMBOL(__ucmpdi2);