From 8b14100c7dbc554a3a1a2e53a6f646ba80c42b6a Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Thu, 11 Jul 1991 01:48:38 +0000 Subject: [PATCH] Fix typo in HP 9000 series 800 trap codes. --- v7/src/microcode/uxtrap.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/v7/src/microcode/uxtrap.h b/v7/src/microcode/uxtrap.h index 4c2ed5ba0..bfcc12c48 100644 --- a/v7/src/microcode/uxtrap.h +++ b/v7/src/microcode/uxtrap.h @@ -1,6 +1,6 @@ /* -*-C-*- -$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/uxtrap.h,v 1.7 1991/06/15 00:41:01 cph Exp $ +$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/uxtrap.h,v 1.8 1991/07/11 01:48:38 cph Exp $ Copyright (c) 1990-91 Massachusetts Institute of Technology @@ -125,14 +125,6 @@ MIT in each case. */ #define INITIALIZE_UX_SIGNAL_CODES() \ { \ - DECLARE_UX_SIGNAL_CODE \ - (SIGFPE, (~ 0L), 12, "overflow trap"); \ - DECLARE_UX_SIGNAL_CODE \ - (SIGFPE, (~ 0L), 13, "conditional trap"); \ - DECLARE_UX_SIGNAL_CODE \ - (SIGFPE, (~ 0L), 22, "floating-point assist exception trap"); \ - DECLARE_UX_SIGNAL_CODE \ - (SIGFPE, (~ 0L), 22, "floating-point assist emulation trap"); \ DECLARE_UX_SIGNAL_CODE \ (SIGILL, (~ 0L), 8, "illegal instruction trap"); \ DECLARE_UX_SIGNAL_CODE \ @@ -141,6 +133,14 @@ MIT in each case. */ (SIGILL, (~ 0L), 10, "privileged operation trap"); \ DECLARE_UX_SIGNAL_CODE \ (SIGILL, (~ 0L), 11, "privileged register trap"); \ + DECLARE_UX_SIGNAL_CODE \ + (SIGFPE, (~ 0L), 12, "overflow trap"); \ + DECLARE_UX_SIGNAL_CODE \ + (SIGFPE, (~ 0L), 13, "conditional trap"); \ + DECLARE_UX_SIGNAL_CODE \ + (SIGFPE, (~ 0L), 14, "floating-point assist exception trap"); \ + DECLARE_UX_SIGNAL_CODE \ + (SIGFPE, (~ 0L), 22, "floating-point assist emulation trap"); \ } #endif /* hp9000s800 */ -- 2.25.1