1 #include <linux/module.h>
5 word_type __ucmpdi2(unsigned long long a, unsigned long long b)
7 const DWunion au = {.ll = a};
8 const DWunion bu = {.ll = b};
10 if ((unsigned int) au.s.high < (unsigned int) bu.s.high)
12 else if ((unsigned int) au.s.high > (unsigned int) bu.s.high)
14 if ((unsigned int) au.s.low < (unsigned int) bu.s.low)
16 else if ((unsigned int) au.s.low > (unsigned int) bu.s.low)
21 EXPORT_SYMBOL(__ucmpdi2);