--- gforth/vmgen-ex/peephole.c 2001/04/29 11:28:24 1.1 +++ gforth/vmgen-ex/peephole.c 2003/08/25 14:17:56 1.5 @@ -1,6 +1,6 @@ /* Peephole optimization routines and tables - Copyright (C) 2001 Free Software Foundation, Inc. + Copyright (C) 2001,2002,2003 Free Software Foundation, Inc. This file is part of Gforth. @@ -31,9 +31,12 @@ typedef struct Combination { Combination peephole_table[] = { #include "mini-peephole.i" +#ifndef __GNUC__ + {-1,-1,-1} /* unnecessary; just to shut up lcc if the file is empty */ +#endif }; -int use_super = 1; +int use_super = 1; /* turned off by option -p */ typedef struct Peeptable_entry { struct Peeptable_entry *next;