2019-05-23 09:14:57 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2017-05-23 17:28:26 +00:00
|
|
|
/*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/module.h>
|
2017-11-22 10:47:28 +00:00
|
|
|
#include <linux/libgcc.h>
|
2017-05-23 17:28:26 +00:00
|
|
|
|
2018-04-11 07:50:16 +00:00
|
|
|
word_type notrace __ucmpdi2(unsigned long long a, unsigned long long b)
|
2017-05-23 17:28:26 +00: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);
|