Remove redundant init of config.make_executable to true.
[deliverable/binutils-gdb.git] / gas / itbl-parse.y
index 9806ecc2f6573180f104ab6cf3bd12b869ecf913..7966ee8fe1b5a21387bc17ec751135dea70d15f2 100644 (file)
@@ -1,24 +1,22 @@
-
 /* itbl-parse.y
+   Copyright (C) 1997  Free Software Foundation, Inc.
 
-        Copyright (C) 1997  Free Software Foundation, Inc.
-
-        This file is part of GAS, the GNU Assembler.
+   This file is part of GAS, the GNU Assembler.
 
-        GAS is free software; you can redistribute it and/or modify
-        it under the terms of the GNU General Public License as published by
-        the Free Software Foundation; either version 2, or (at your option)
-        any later version.
+   GAS is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 2, or (at your option)
+   any later version.
 
-        GAS is distributed in the hope that it will be useful,
-        but WITHOUT ANY WARRANTY; without even the implied warranty of
-        MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-        GNU General Public License for more details.
+   GAS is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
 
-        You should have received a copy of the GNU General Public License
-        along with GAS; see the file COPYING.  If not, write to the Free
-        Software Foundation, 59 Temple Place - Suite 330, Boston, MA
-        02111-1307, USA.  */
+   You should have received a copy of the GNU General Public License
+   along with GAS; see the file COPYING.  If not, write to the Free
+   Software Foundation, 59 Temple Place - Suite 330, Boston, MA
+   02111-1307, USA.  */
 
 %{
 
@@ -276,8 +274,9 @@ FIXME! hex is ambiguous with any digit
 static int sbit, ebit;
 static struct itbl_entry *insn=0;
 extern int insntbl_line;
-int yyparse (void);
-int yylex (void);
+int yyparse PARAMS ((void));
+int yylex PARAMS ((void));
+static int yyerror PARAMS ((const char *));
 
 %}
 
@@ -451,9 +450,10 @@ value:
        ;
 %%
 
-void 
-yyerror (char *msg)
+static int
+yyerror (msg)
+     const char *msg;
 {
   printf ("line %d: %s\n", insntbl_line, msg);
+  return 0;
 }
-
This page took 0.024894 seconds and 4 git commands to generate.