[COMMITTED PATCH] Remove duplicate const qualifiers in v850-dis.c
Roland McGrath
mcgrathr@google.com
Thu Oct 10 17:20:00 GMT 2013
More information about the Binutils mailing list
Thu Oct 10 17:20:00 GMT 2013
- Previous message (by thread): [RFA] Add support for pretty-printing .debug_gnu_pubnames, pubtypes
- Next message (by thread): [COMMITTED PATCH] cast enum values to type of initializer in cr{16,x}-opc.c
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Committed as obvious, to trunk and 2.24 branch. Thanks, Roland opcodes/ 2013-10-10 Roland McGrath <mcgrathr@google.com> * v850-dis.c (v850_cacheop_codes, v850_prefop_codes): Remove duplicate const qualifier. --- a/opcodes/v850-dis.c +++ b/opcodes/v850-dis.c @@ -73,7 +73,7 @@ static const char *const v850_cacheop_names[] = "chbwbd", "cibid", "cibiwbd", "cibwbd", "cfald", "cistd", "cildd" }; -static const int const v850_cacheop_codes[] = +static const int v850_cacheop_codes[] = { 0x00, 0x20, 0x40, 0x60, 0x61, 0x04, 0x06, 0x07, 0x24, 0x26, 0x27, 0x44, 0x64, 0x65, -1 @@ -82,7 +82,7 @@ static const int const v850_cacheop_codes[] = static const char *const v850_prefop_names[] = { "prefi", "prefd" }; -static const int const v850_prefop_codes[] = +static const int v850_prefop_codes[] = { 0x00, 0x04, -1}; static void
- Previous message (by thread): [RFA] Add support for pretty-printing .debug_gnu_pubnames, pubtypes
- Next message (by thread): [COMMITTED PATCH] cast enum values to type of initializer in cr{16,x}-opc.c
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Binutils mailing list