diff options
Diffstat (limited to 'contrib/gcc/gencodes.c')
-rw-r--r-- | contrib/gcc/gencodes.c | 17 |
1 files changed, 3 insertions, 14 deletions
diff --git a/contrib/gcc/gencodes.c b/contrib/gcc/gencodes.c index 13aa2c5..27a68ad 100644 --- a/contrib/gcc/gencodes.c +++ b/contrib/gcc/gencodes.c @@ -2,7 +2,7 @@ - some macros CODE_FOR_... giving the insn_code_number value for each of the defined standard insn names. Copyright (C) 1987, 1991, 1995, 1998, - 1999, 2000, 2001, 2003 Free Software Foundation, Inc. + 1999, 2000, 2001, 2003, 2004 Free Software Foundation, Inc. This file is part of GCC. @@ -18,8 +18,8 @@ for more details. You should have received a copy of the GNU General Public License along with GCC; see the file COPYING. If not, write to the Free -Software Foundation, 59 Temple Place - Suite 330, Boston, MA -02111-1307, USA. */ +Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA +02110-1301, USA. */ #include "bconfig.h" @@ -59,9 +59,6 @@ main (int argc, char **argv) direct references to CODE_FOR_xxx in C code. */ insn_elision = 0; - if (argc <= 1) - fatal ("no input file name"); - if (init_md_reader_args (argc, argv) != SUCCESS_EXIT_CODE) return (FATAL_EXIT_CODE); @@ -99,11 +96,3 @@ enum insn_code {"); return SUCCESS_EXIT_CODE; } - -/* Define this so we can link with print-rtl.o to get debug_rtx function. */ - -const char * -get_insn_name (int code ATTRIBUTE_UNUSED) -{ - return NULL; -} |