From 3848dc7cbc5dc7f9d32637d03c5879b2592e6032 Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Thu, 29 Nov 1990 05:06:40 +0000 Subject: [PATCH] Pass "-w" switch to compiler to eliminate needless warning messages. --- v7/src/microcode/m/mips.h | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/v7/src/microcode/m/mips.h b/v7/src/microcode/m/mips.h index bfd926a15..14e6ebb21 100644 --- a/v7/src/microcode/m/mips.h +++ b/v7/src/microcode/m/mips.h @@ -1,7 +1,7 @@ /* -*-C-*- Machine file for MIPS computers. -$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/m/Attic/mips.h,v 1.3 1990/04/12 21:04:06 jinx Exp $ +$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/m/Attic/mips.h,v 1.4 1990/11/29 05:06:40 cph Rel $ Copyright (c) 1989, 1990 Massachusetts Institute of Technology @@ -39,5 +39,8 @@ MIT in each case. */ libg but ULTRIX on the pmax doesn't! */ #define LIB_DEBUG -/* The following allows optimization of interp.c */ -#define C_SWITCH_MACHINE -Olimit 2000 -DTYPE_CODE_LENGTH=6 +/* The "-Olimit" switch is needed because some procedures are larger + than the built-in optimization limit. The "-w" switch says not to + report warnings -- there are many of them, all harmless, that would + not be reported if this were an ANSI compiler. */ +#define C_SWITCH_MACHINE -Olimit 2000 -w -DTYPE_CODE_LENGTH=6 -- 2.25.1