Change type of v850_target_arch to enum bfd_architecture

gas/ChangeLog:

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

	* config/tc-v850.c (v850_target_arch): change type to enum
	bfd_architecture.
	* config/tc-v850.h (v850_target_arch): Likewise.
This commit is contained in:
Trevor Saunders 2016-05-16 18:04:17 -04:00
parent d1f70bdcab
commit b42e9fa8cc
2 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@ static int machine = -1;
/* Indiciates the target BFD architecture. */
int v850_target_arch = bfd_arch_v850_rh850;
enum bfd_architecture v850_target_arch = bfd_arch_v850_rh850;
const char * v850_target_format = "elf32-v850-rh850";
static flagword v850_e_flags = 0;

View File

@ -26,7 +26,7 @@
/* The target BFD architecture. */
#define TARGET_ARCH v850_target_arch
extern int v850_target_arch;
extern enum bfd_architecture v850_target_arch;
/* The target BFD format. */
#define TARGET_FORMAT v850_target_format