rx: make field type enum
authorTrevor Saunders <tbsaunde+binutils@tbsaunde.org>
Sat, 14 May 2016 08:33:53 +0000 (04:33 -0400)
committerTrevor Saunders <tbsaunde+binutils@tbsaunde.org>
Wed, 18 May 2016 10:26:27 +0000 (06:26 -0400)
gas/ChangeLog:

2016-05-18  Trevor Saunders  <tbsaunde+binutils@tbsaunde.org>

* config/tc-rx.c (struct cpu_type): Change the type of a field from
int to enum rx_cpu_types.

gas/ChangeLog
gas/config/tc-rx.c

index 1cd95a5..aa50770 100644 (file)
@@ -1,5 +1,10 @@
 2016-05-18  Trevor Saunders  <tbsaunde+binutils@tbsaunde.org>
 
+       * config/tc-rx.c (struct cpu_type): Change the type of a field from
+       int to enum rx_cpu_types.
+
+2016-05-18  Trevor Saunders  <tbsaunde+binutils@tbsaunde.org>
+
        * config/tc-dlx.c (struct machine_it): change the type of a field from
        int to bfd_reloc_code_real_type.
        * config/tc-tic4x.c: Likewise.
index a1590ac..f87aac1 100644 (file)
@@ -109,7 +109,7 @@ size_t md_longopts_size = sizeof (md_longopts);
 struct cpu_type
 {
   const char *cpu_name;
-  int type;
+  enum rx_cpu_types type;
 };
 
 struct cpu_type  cpu_type_list[] =