From 543fdf35198bf516ce171fb9654e15878eda5434 Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Thu, 4 Jan 1996 23:30:48 +0000 Subject: [PATCH] Make sure that floating-point control word is properly initialized under OS/2. --- v7/src/microcode/cmpint.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/v7/src/microcode/cmpint.c b/v7/src/microcode/cmpint.c index c4787d04b..598246654 100644 --- a/v7/src/microcode/cmpint.c +++ b/v7/src/microcode/cmpint.c @@ -1,8 +1,8 @@ /* -*-C-*- -$Id: cmpint.c,v 1.86 1995/10/08 15:23:41 cph Exp $ +$Id: cmpint.c,v 1.87 1996/01/04 23:30:48 cph Exp $ -Copyright (c) 1989-95 Massachusetts Institute of Technology +Copyright (c) 1989-96 Massachusetts Institute of Technology This material was developed by the Scheme project at the Massachusetts Institute of Technology, Department of Electrical Engineering and @@ -3628,6 +3628,10 @@ DEFUN (compiler_initialize, (fasl_p), long fasl_p) `setjmp' and restores it on `longjmp', so we must initialize the register before `setjmp' is called. */ interface_initialize (); +#endif +#ifdef _OS2 + /* Same as for Sony. */ + i386_interface_initialize (); #endif } return; -- 2.25.1