X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=opcodes%2Ftic80-opc.c;h=517bf627e5044870b5ae13010af550985eb76263;hb=470c0b1c9a1d69e3c4f9281600399b1dadd40614;hp=8df18e3289692f8a1dfb8962940dc894b93e2e78;hpb=9b201bb5e5daa9b4f783e6ece9cbfbdbf9f1d6f4;p=deliverable%2Fbinutils-gdb.git diff --git a/opcodes/tic80-opc.c b/opcodes/tic80-opc.c index 8df18e3289..517bf627e5 100644 --- a/opcodes/tic80-opc.c +++ b/opcodes/tic80-opc.c @@ -1,5 +1,5 @@ /* Opcode table for TI TMS320C80 (MVP). - Copyright 1996, 1997, 2000, 2007 Free Software Foundation, Inc. + Copyright (C) 1996-2019 Free Software Foundation, Inc. This file is part of the GNU opcodes library. @@ -18,8 +18,8 @@ Free Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */ -#include #include "sysdep.h" +#include #include "opcode/tic80.h" /* This file holds various tables for the TMS320C80 (MVP). @@ -219,7 +219,7 @@ const int tic80_num_predefined_symbols = sizeof (tic80_predefined_symbols) / siz in CLASS, and translates it to a numeric value, which it returns. If CLASS is zero, any symbol that matches NAME is translated. If - CLASS is non-zero, then only a symbol that has class CLASS is + CLASS is non-zero, then only a symbol that has symbol_class CLASS is matched. If no translation is possible, it returns -1, a value not used by @@ -233,9 +233,7 @@ const int tic80_num_predefined_symbols = sizeof (tic80_predefined_symbols) / siz */ int -tic80_symbol_to_value (name, class) - char *name; - int class; +tic80_symbol_to_value (char *name, int symbol_class) { const struct predefined_symbol *pdsp; int low = 0; @@ -256,10 +254,10 @@ tic80_symbol_to_value (name, class) { low = middle + 1; } - else + else { pdsp = &tic80_predefined_symbols[middle]; - if ((class == 0) || (class & PDS_VALUE (pdsp))) + if ((symbol_class == 0) || (symbol_class & PDS_VALUE (pdsp))) { rtnval = PDS_VALUE (pdsp); } @@ -271,13 +269,11 @@ tic80_symbol_to_value (name, class) } /* This function takes a value VAL and finds a matching predefined - symbol that is in the operand class specified by CLASS. If CLASS + symbol that is in the operand symbol_class specified by CLASS. If CLASS is zero, the first matching symbol is returned. */ const char * -tic80_value_to_symbol (val, class) - int val; - int class; +tic80_value_to_symbol (int val, int symbol_class) { const struct predefined_symbol *pdsp; int ival; @@ -291,7 +287,7 @@ tic80_value_to_symbol (val, class) ival = PDS_VALUE (pdsp) & ~TIC80_OPERAND_MASK; if (ival == val) { - if ((class == 0) || (class & PDS_VALUE (pdsp))) + if ((symbol_class == 0) || (symbol_class & PDS_VALUE (pdsp))) { /* Found the desired match */ name = PDS_NAME (pdsp); @@ -310,8 +306,7 @@ tic80_value_to_symbol (val, 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) {