summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDale Rahn <drahn@cvs.openbsd.org>2001-11-11 04:43:54 +0000
committerDale Rahn <drahn@cvs.openbsd.org>2001-11-11 04:43:54 +0000
commitc2e2c4ed28abfb5e6fcb9070ad9d9002433c68f5 (patch)
tree0b40f80c24863c81d5331baacf58ecf9d66f2143
parent120e2db176886856925c7feee82be7ffd91f4c4e (diff)
Fix matching brace error. Fortunately PGM errors do not happen in the
kernel much. This has been there quite a while.
-rw-r--r--sys/arch/powerpc/powerpc/trap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/powerpc/powerpc/trap.c b/sys/arch/powerpc/powerpc/trap.c
index 2da7fa246ca..212858740bd 100644
--- a/sys/arch/powerpc/powerpc/trap.c
+++ b/sys/arch/powerpc/powerpc/trap.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: trap.c,v 1.36 2001/11/07 01:02:36 art Exp $ */
+/* $OpenBSD: trap.c,v 1.37 2001/11/11 04:43:53 drahn Exp $ */
/* $NetBSD: trap.c,v 1.3 1996/10/13 03:31:37 christos Exp $ */
/*
@@ -400,6 +400,7 @@ for (i = 0; i < errnum; i++) {
sv.sival_int = frame->srr0;
trapsignal(p, SIGILL, 0, ILL_ILLOPC, sv);
break;
+ }
case EXC_PGM:
/* should check for correct byte here or panic */
#ifdef DDB
@@ -410,7 +411,6 @@ for (i = 0; i < errnum; i++) {
#endif
break;
- }
/* This is not really a perf exception, but is an ALTIVEC unavail
* which we do not handle, kill the process with illegal instruction.
*/