diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2007-06-26 19:37:20 +0200 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2007-06-26 19:57:32 +0200 |
commit | 3ca507920d4f618a960aed19609bcce6c4d15387 (patch) | |
tree | 897fdc1c61574f5f0ffaaffbfbdc1e0a383873a8 /arch/mips/lib | |
parent | 189548642c5962e60c3667bdb3a703fe0bed12a6 (diff) | |
download | op-kernel-dev-3ca507920d4f618a960aed19609bcce6c4d15387.zip op-kernel-dev-3ca507920d4f618a960aed19609bcce6c4d15387.tar.gz |
[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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/lib/ucmpdi2.c b/arch/mips/lib/ucmpdi2.c index e9ff258..e2ff607 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}; |