Module Name:    src
Committed By:   simonb
Date:           Wed Mar 31 09:48:15 UTC 2021

Modified Files:
        src/sys/arch/luna68k/luna68k: locore.s
        src/sys/arch/mvme68k/mvme68k: locore.s
        src/sys/arch/sun2/sun2: locore.s
        src/sys/arch/sun3/sun3: locore.s
        src/sys/arch/sun3/sun3x: locore.s

Log Message:
Adjust the number of entries in the intrcnt array to match the number
of names in the intrnames list.


To generate a diff of this commit:
cvs rdiff -u -r1.65 -r1.66 src/sys/arch/luna68k/luna68k/locore.s
cvs rdiff -u -r1.116 -r1.117 src/sys/arch/mvme68k/mvme68k/locore.s
cvs rdiff -u -r1.27 -r1.28 src/sys/arch/sun2/sun2/locore.s
cvs rdiff -u -r1.99 -r1.100 src/sys/arch/sun3/sun3/locore.s
cvs rdiff -u -r1.67 -r1.68 src/sys/arch/sun3/sun3x/locore.s

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/luna68k/luna68k/locore.s
diff -u src/sys/arch/luna68k/luna68k/locore.s:1.65 src/sys/arch/luna68k/luna68k/locore.s:1.66
--- src/sys/arch/luna68k/luna68k/locore.s:1.65	Mon Jan 25 13:08:04 2021
+++ src/sys/arch/luna68k/luna68k/locore.s	Wed Mar 31 09:48:14 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: locore.s,v 1.65 2021/01/25 13:08:04 tsutsui Exp $ */
+/* $NetBSD: locore.s,v 1.66 2021/03/31 09:48:14 simonb Exp $ */
 
 /*
  * Copyright (c) 1988 University of Utah.
@@ -967,5 +967,5 @@ GLOBAL(intrnames)
 GLOBAL(eintrnames)
 	.even
 GLOBAL(intrcnt)
-	.long	0,0,0,0,0,0,0,0,0,0
+	.long	0,0,0,0,0,0,0,0,0
 GLOBAL(eintrcnt)

Index: src/sys/arch/mvme68k/mvme68k/locore.s
diff -u src/sys/arch/mvme68k/mvme68k/locore.s:1.116 src/sys/arch/mvme68k/mvme68k/locore.s:1.117
--- src/sys/arch/mvme68k/mvme68k/locore.s:1.116	Mon Jan 25 13:08:05 2021
+++ src/sys/arch/mvme68k/mvme68k/locore.s	Wed Mar 31 09:48:14 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: locore.s,v 1.116 2021/01/25 13:08:05 tsutsui Exp $	*/
+/*	$NetBSD: locore.s,v 1.117 2021/03/31 09:48:14 simonb Exp $	*/
 
 /*
  * Copyright (c) 1988 University of Utah.
@@ -1296,5 +1296,5 @@ GLOBAL(eintrnames)
 	.even
 
 GLOBAL(intrcnt)
-	.long	0,0,0,0,0,0,0,0,0,0
+	.long	0,0,0,0,0,0,0,0,0
 GLOBAL(eintrcnt)

Index: src/sys/arch/sun2/sun2/locore.s
diff -u src/sys/arch/sun2/sun2/locore.s:1.27 src/sys/arch/sun2/sun2/locore.s:1.28
--- src/sys/arch/sun2/sun2/locore.s:1.27	Tue Aug  6 05:37:30 2019
+++ src/sys/arch/sun2/sun2/locore.s	Wed Mar 31 09:48:15 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: locore.s,v 1.27 2019/08/06 05:37:30 msaitoh Exp $	*/
+/*	$NetBSD: locore.s,v 1.28 2021/03/31 09:48:15 simonb Exp $	*/
 
 /*
  * Copyright (c) 1980, 1990, 1993
@@ -454,7 +454,7 @@ GLOBAL(eintrnames)
 	.data
 	.even
 GLOBAL(intrcnt)
-	.long	0,0,0,0,0,0,0,0,0,0
+	.long	0,0,0,0,0,0,0,0
 GLOBAL(eintrcnt)
 	.text
 

Index: src/sys/arch/sun3/sun3/locore.s
diff -u src/sys/arch/sun3/sun3/locore.s:1.99 src/sys/arch/sun3/sun3/locore.s:1.100
--- src/sys/arch/sun3/sun3/locore.s:1.99	Tue Aug  6 05:37:30 2019
+++ src/sys/arch/sun3/sun3/locore.s	Wed Mar 31 09:48:15 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: locore.s,v 1.99 2019/08/06 05:37:30 msaitoh Exp $	*/
+/*	$NetBSD: locore.s,v 1.100 2021/03/31 09:48:15 simonb Exp $	*/
 
 /*
  * Copyright (c) 1980, 1990, 1993
@@ -500,7 +500,7 @@ GLOBAL(eintrnames)
 	.data
 	.even
 GLOBAL(intrcnt)
-	.long	0,0,0,0,0,0,0,0,0,0
+	.long	0,0,0,0,0,0,0,0
 GLOBAL(eintrcnt)
 	.text
 

Index: src/sys/arch/sun3/sun3x/locore.s
diff -u src/sys/arch/sun3/sun3x/locore.s:1.67 src/sys/arch/sun3/sun3x/locore.s:1.68
--- src/sys/arch/sun3/sun3x/locore.s:1.67	Mon Jan 25 13:08:05 2021
+++ src/sys/arch/sun3/sun3x/locore.s	Wed Mar 31 09:48:15 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: locore.s,v 1.67 2021/01/25 13:08:05 tsutsui Exp $	*/
+/*	$NetBSD: locore.s,v 1.68 2021/03/31 09:48:15 simonb Exp $	*/
 
 /*
  * Copyright (c) 1988 University of Utah.
@@ -485,7 +485,7 @@ GLOBAL(eintrnames)
 	.data
 	.even
 GLOBAL(intrcnt)
-	.long	0,0,0,0,0,0,0,0,0,0
+	.long	0,0,0,0,0,0,0,0
 GLOBAL(eintrcnt)
 	.text
 

Reply via email to