2016-08-22 03:58:15 +08:00
|
|
|
#include <linux/export.h>
|
2007-08-24 20:47:45 +08:00
|
|
|
|
|
|
|
#include "libgcc.h"
|
|
|
|
|
2016-05-25 18:06:35 +08:00
|
|
|
word_type notrace __cmpdi2(long long a, long long b)
|
2007-08-24 20:47:45 +08:00
|
|
|
{
|
|
|
|
const DWunion au = {
|
|
|
|
.ll = a
|
|
|
|
};
|
|
|
|
const DWunion bu = {
|
|
|
|
.ll = b
|
|
|
|
};
|
|
|
|
|
|
|
|
if (au.s.high < bu.s.high)
|
|
|
|
return 0;
|
|
|
|
else if (au.s.high > 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(__cmpdi2);
|