diff options
author | Ian Lance Taylor <ian@airs.com> | 1997-02-23 23:15:09 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1997-02-23 23:15:09 +0000 |
commit | 7b9f3d46c6a31dc1833c1ce988e0b9cd43e712c6 (patch) | |
tree | 59593284097ec4c30719fe8cf4cab8b27af428cb /gas | |
parent | 1857d1e67d65a7f080c08c3ae6462f3f071d9654 (diff) | |
download | gdb-7b9f3d46c6a31dc1833c1ce988e0b9cd43e712c6.zip gdb-7b9f3d46c6a31dc1833c1ce988e0b9cd43e712c6.tar.gz gdb-7b9f3d46c6a31dc1833c1ce988e0b9cd43e712c6.tar.bz2 |
* 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.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 7 | ||||
-rw-r--r-- | gas/Makefile.in | 11 | ||||
-rw-r--r-- | gas/itbl-ops.c | 1 |
3 files changed, 14 insertions, 5 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 20530b5..cf53764 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,10 @@ +Sun Feb 23 18:13:19 1997 Ian Lance Taylor <ian@cygnus.com> + + * 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 <dawn@cygnus.com> * itbl-parse.y: Fix indentation mistakes from indent program. diff --git a/gas/Makefile.in b/gas/Makefile.in index 3db15f5..06dafa6 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 9117f31..a100dbc 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; |