* Makefile.in (DISTSTUFF): Remove itbl-parse.y, itbl-lex.l, and
authorIan Lance Taylor <ian@airs.com>
Sun, 23 Feb 1997 23:15:09 +0000 (23:15 +0000)
committerIan Lance Taylor <ian@airs.com>
Sun, 23 Feb 1997 23:15:09 +0000 (23:15 +0000)
itbl-ops.c.  Add itbl-parse.c and itbl-lex.c.
(LEX, LEXFLAGS): Define.
* itbl-ops.c (append_insns_as_macros): Remove bogus ASSERT.

gas/ChangeLog
gas/Makefile.in
gas/itbl-ops.c

index 20530b50c7e4a5d0df546d97d07abb8521258cae..cf53764cdf9c71ca0d35878d607953a3429d12ae 100644 (file)
@@ -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.
index 3db15f55ee731f39b3f601e2490f745c387ae472..06dafa6bcc1097ddc32c2ef3545b3a2afe935c52 100644 (file)
@@ -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
index 9117f3120e1af5cdb0588c9f8b0b44b7102ebe8f..a100dbc7f97c33d9f0c115a42d75b32cce608a9d 100644 (file)
@@ -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;
This page took 0.039901 seconds and 4 git commands to generate.