From: Ian Lance Taylor Date: Sun, 23 Feb 1997 23:15:09 +0000 (+0000) Subject: * Makefile.in (DISTSTUFF): Remove itbl-parse.y, itbl-lex.l, and X-Git-Url: http://git.efficios.com/?a=commitdiff_plain;h=7b9f3d46c6a31dc1833c1ce988e0b9cd43e712c6;p=deliverable%2Fbinutils-gdb.git * Makefile.in (DISTSTUFF): Remove itbl-parse.y, itbl-lex.l, and itbl-ops.c. Add itbl-parse.c and itbl-lex.c. (LEX, LEXFLAGS): Define. * itbl-ops.c (append_insns_as_macros): Remove bogus ASSERT. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 20530b50c7..cf53764cdf 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,10 @@ +Sun Feb 23 18:13:19 1997 Ian Lance Taylor + + * Makefile.in (DISTSTUFF): Remove itbl-parse.y, itbl-lex.l, and + itbl-ops.c. Add itbl-parse.c and itbl-lex.c. + (LEX, LEXFLAGS): Define. + * itbl-ops.c (append_insns_as_macros): Remove bogus ASSERT. + Sat Feb 22 21:25:00 1997 Dawn Perchik * itbl-parse.y: Fix indentation mistakes from indent program. diff --git a/gas/Makefile.in b/gas/Makefile.in index 3db15f55ee..06dafa6bcc 100644 --- a/gas/Makefile.in +++ b/gas/Makefile.in @@ -1,5 +1,5 @@ # Makefile for GNU Assembler -# Copyright (C) 1987, 88, 89, 90, 91, 92, 93, 94, 95, 1996 +# Copyright (C) 1987, 88, 89, 90, 91, 92, 93, 94, 95, 96, 1997 # Free Software Foundation, Inc. # This file is part of GNU GAS. @@ -15,8 +15,9 @@ # GNU General Public License for more details. # You should have received a copy of the GNU General Public License -# along with GNU GAS; see the file COPYING. If not, write to -# the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# along with GNU GAS; see the file COPYING. If not, write to the Free +# Software Foundation, 59 Temple Place - Suite 330, Boston, MA +# 02111-1307, USA. # The targets for external use include: # all, doc, proto, install, uninstall, includes, TAGS, @@ -62,12 +63,14 @@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_XFORM = $(INSTALL) -t='$(program_transform_name)' INSTALL_XFORM1= $(INSTALL_XFORM) -b=.1 -DISTSTUFF= make-gas.com m68k-parse.c itbl-parse.y itbl-lex.l itbl-ops.c +DISTSTUFF= make-gas.com m68k-parse.c itbl-parse.c itbl-lex.c AR = ar AR_FLAGS = qv BISON = `if [ -f ../bison/bison ] ; then echo ../bison/bison -y -L../bison/bison ; else echo bison -y ; fi` BISONFLAGS = +LEX = `if [ -f ../flex/flex ] ; then echo ../flex/flex ; else echo flex ; fi` +LEXFLAGS = MAKEINFO = makeinfo TEXI2DVI = texi2dvi RANLIB = ranlib diff --git a/gas/itbl-ops.c b/gas/itbl-ops.c index 9117f3120e..a100dbc7f9 100644 --- a/gas/itbl-ops.c +++ b/gas/itbl-ops.c @@ -329,7 +329,6 @@ append_insns_as_macros (void) struct itbl_entry *e, **es; int n, id, size, new_size, new_num_opcodes; - ASSERT (itbl_num_opcodes > 0); if (!itbl_num_opcodes) /* no new instructions to add! */ { return;