rx: make field type enum

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.
This commit is contained in:
Trevor Saunders 2016-05-14 04:33:53 -04:00
parent 4bfaa1cae7
commit 42e58860e2
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
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

View 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[] =