Module Name: src
Committed By: matt
Date: Sat Sep 12 17:16:08 UTC 2009
Modified Files:
src/sys/arch/mips/include [matt-nb5-mips64]: types.h
Log Message:
Because of the N32 support, register32_t on mips is really 64-bits wide.
To generate a diff of this commit:
cvs rdiff -u -r1.43.36.9 -r1.43.36.10 src/sys/arch/mips/include/types.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/mips/include/types.h
diff -u src/sys/arch/mips/include/types.h:1.43.36.9 src/sys/arch/mips/include/types.h:1.43.36.10
--- src/sys/arch/mips/include/types.h:1.43.36.9 Wed Sep 9 04:48:28 2009
+++ src/sys/arch/mips/include/types.h Sat Sep 12 17:16:07 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: types.h,v 1.43.36.9 2009/09/09 04:48:28 matt Exp $ */
+/* $NetBSD: types.h,v 1.43.36.10 2009/09/12 17:16:07 matt Exp $ */
/*-
* Copyright (c) 1992, 1993
@@ -98,10 +98,8 @@
typedef __uint64_t uregister_t;
typedef __int64_t mips_reg_t; /* do not use */
typedef __uint64_t mips_ureg_t; /* do not use */
-typedef __int32_t register32_t;
-typedef __uint32_t uregister32_t;
-#define PRIxREGISTER32 PRIx32
-#define PRIxUREGISTER32 PRIx32
+typedef __int64_t register32_t;
+typedef __uint64_t uregister32_t;
#define PRIxREGISTER PRIx64
#define PRIxUREGISTER PRIx64
#endif /* __mips_o32 */