2019-05-23 02:14:57 -07:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2017-05-23 10:28:26 -07:00
|
|
|
/*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/module.h>
|
2017-11-22 03:47:28 -07:00
|
|
|
#include <linux/libgcc.h>
|
2017-05-23 10:28:26 -07:00
|
|
|
|
2018-04-11 00:50:16 -07:00
|
|
|
word_type notrace __ucmpdi2(unsigned long long a, unsigned long long b)
|
2017-05-23 10:28:26 -07:00
|
|
|
{
|
|
|
|
const DWunion au = {.ll = a};
|
|
|
|
const DWunion bu = {.ll = b};
|
|
|
|
|
|
|
|
if ((unsigned int) au.s.high < (unsigned int) bu.s.high)
|
|
|
|
return 0;
|
|
|
|
else if ((unsigned int) au.s.high > (unsigned int) bu.s.high)
|
|
|
|
return 2;
|
|
|
|
if ((unsigned int) au.s.low < (unsigned int) bu.s.low)
|
|
|
|
return 0;
|
|
|
|
else if ((unsigned int) au.s.low > (unsigned int) bu.s.low)
|
|
|
|
return 2;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(__ucmpdi2);
|