Update of /cvsroot/linux-vax/kernel-2.4/arch/vax/lib
In directory sc8-pr-cvs1:/tmp/cvs-serv6471
Modified Files:
lshrdi3.c
Log Message:
DA: long standing bug.. df on my NFS root showed it up, this had the big
endian definition in it not the little endian
Index: lshrdi3.c
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.4/arch/vax/lib/lshrdi3.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- lshrdi3.c 25 Feb 2001 00:37:31 -0000 1.1
+++ lshrdi3.c 11 May 2003 07:51:18 -0000 1.2
@@ -25,7 +25,7 @@
typedef int DItype __attribute__ ((mode (DI)));
typedef int word_type __attribute__ ((mode (__word__)));
-struct DIstruct {SItype high, low;};
+struct DIstruct {SItype low, high;};
typedef union
{
|