Module Name: src
Committed By: matt
Date: Sun Sep 6 22:34:53 UTC 2009
Modified Files:
src/sys/arch/mips/include [matt-nb5-mips64]: types.h
Log Message:
make label_t 2 registers larger.
To generate a diff of this commit:
cvs rdiff -u -r1.43.36.6 -r1.43.36.7 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.6 src/sys/arch/mips/include/types.h:1.43.36.7
--- src/sys/arch/mips/include/types.h:1.43.36.6 Sat Sep 5 03:19:31 2009
+++ src/sys/arch/mips/include/types.h Sun Sep 6 22:34:53 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: types.h,v 1.43.36.6 2009/09/05 03:19:31 matt Exp $ */
+/* $NetBSD: types.h,v 1.43.36.7 2009/09/06 22:34:53 matt Exp $ */
/*-
* Copyright (c) 1992, 1993
@@ -108,7 +108,7 @@
#if defined(_KERNEL)
typedef struct label_t {
- register_t val[12];
+ register_t val[14];
} label_t;
#endif