* 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.
This commit is contained in:
parent
1857d1e67d
commit
7b9f3d46c6
@ -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.
|
||||
|
@ -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
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user