3 int __ucmpdi2(unsigned long long a
, unsigned long long b
)
5 const DWunion au
= {.ll
= a
};
6 const DWunion bu
= {.ll
= b
};
8 if ((unsigned int)au
.s
.high
< (unsigned int)bu
.s
.high
)
10 else if ((unsigned int)au
.s
.high
> (unsigned int)bu
.s
.high
)
12 if ((unsigned int)au
.s
.low
< (unsigned int)bu
.s
.low
)
14 else if ((unsigned int)au
.s
.low
> (unsigned int)bu
.s
.low
)