1 #include <linux/module.h>
4 word_type __ucmpdi2(unsigned long long a, unsigned long long b)
6 const DWunion au = {.ll = a};
7 const DWunion bu = {.ll = b};
9 if ((unsigned int) au.s.high < (unsigned int) bu.s.high)
11 else if ((unsigned int) au.s.high > (unsigned int) bu.s.high)
13 if ((unsigned int) au.s.low < (unsigned int) bu.s.low)
15 else if ((unsigned int) au.s.low > (unsigned int) bu.s.low)
19 EXPORT_SYMBOL(__ucmpdi2);