Use SYMBOL_MATCHES_SEARCH_NAME some more
[deliverable/binutils-gdb.git] / opcodes / tic80-opc.c
index b4ac1981ce58a8fe5d86bdf5e96a7495247a13fc..0d4687f138db5d2cdefb6d469234837c12a4de23 100644 (file)
@@ -1,6 +1,5 @@
 /* Opcode table for TI TMS320C80 (MVP).
-   Copyright 1996, 1997, 2000, 2005, 2007, 2012
-   Free Software Foundation, Inc.
+   Copyright (C) 1996-2017 Free Software Foundation, Inc.
 
    This file is part of the GNU opcodes library.
 
@@ -234,9 +233,7 @@ const int tic80_num_predefined_symbols = sizeof (tic80_predefined_symbols) / siz
  */
 
 int
-tic80_symbol_to_value (name, symbol_class)
-     char *name;
-     int symbol_class;
+tic80_symbol_to_value (char *name, int symbol_class)
 {
   const struct predefined_symbol *pdsp;
   int low = 0;
@@ -257,7 +254,7 @@ tic80_symbol_to_value (name, symbol_class)
        {
          low = middle + 1;
        }
-      else 
+      else
        {
          pdsp = &tic80_predefined_symbols[middle];
          if ((symbol_class == 0) || (symbol_class & PDS_VALUE (pdsp)))
@@ -276,9 +273,7 @@ tic80_symbol_to_value (name, symbol_class)
    is zero, the first matching symbol is returned. */
 
 const char *
-tic80_value_to_symbol (val, symbol_class)
-     int val;
-     int symbol_class;
+tic80_value_to_symbol (int val, int symbol_class)
 {
   const struct predefined_symbol *pdsp;
   int ival;
@@ -311,8 +306,7 @@ tic80_value_to_symbol (val, symbol_class)
    returns NULL. */
 
 const struct predefined_symbol *
-tic80_next_predefined_symbol (pdsp)
-     const struct predefined_symbol *pdsp;
+tic80_next_predefined_symbol (const struct predefined_symbol *pdsp)
 {
   if (pdsp == NULL)
     {
This page took 0.023083 seconds and 4 git commands to generate.