aboutsummaryrefslogtreecommitdiff
path: root/arch/mips/lib
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2007-06-26 19:37:20 +0200
committerRalf Baechle <ralf@linux-mips.org>2007-06-26 19:57:32 +0200
commit3ca507920d4f618a960aed19609bcce6c4d15387 (patch)
tree897fdc1c61574f5f0ffaaffbfbdc1e0a383873a8 /arch/mips/lib
parent189548642c5962e60c3667bdb3a703fe0bed12a6 (diff)
[MIPS] __ucmpdi2 arguments are unsigned long long.
Reported by Eugene Surovegin <ebs@ebshome.net>. Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/lib')
-rw-r--r--arch/mips/lib/ucmpdi2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/lib/ucmpdi2.c b/arch/mips/lib/ucmpdi2.c
index e9ff258ef02..e2ff6072b5a 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};