diff options
Diffstat (limited to 'arch/mips/lib/ucmpdi2.c')
| -rw-r--r-- | arch/mips/lib/ucmpdi2.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/mips/lib/ucmpdi2.c b/arch/mips/lib/ucmpdi2.c index e9ff258ef02..bb4cb2f828e 100644 --- a/arch/mips/lib/ucmpdi2.c +++ b/arch/mips/lib/ucmpdi2.c @@ -2,7 +2,7 @@ #include "libgcc.h" -word_type __ucmpdi2 (unsigned long a, unsigned long b) +word_type __ucmpdi2(unsigned long long a, unsigned long long b) { const DWunion au = {.ll = a}; const DWunion bu = {.ll = b}; @@ -17,3 +17,5 @@ word_type __ucmpdi2 (unsigned long a, unsigned long b) return 2; return 1; } + +EXPORT_SYMBOL(__ucmpdi2); |
