This is the mail archive of the binutils@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] Change type of v850_target_arch to enum bfd_architecture


From: Trevor Saunders <tbsaunde+binutils@tbsaunde.org>

Hi,

Similar sort of story as the last patches.

built and regtested cross to v850-elf, ok?

Trev

gas/ChangeLog:

2016-05-17  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.
---
 gas/config/tc-v850.c | 2 +-
 gas/config/tc-v850.h | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/gas/config/tc-v850.c b/gas/config/tc-v850.c
index 929c87d..bcd2724 100644
--- a/gas/config/tc-v850.c
+++ b/gas/config/tc-v850.c
@@ -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;
 
diff --git a/gas/config/tc-v850.h b/gas/config/tc-v850.h
index 7e7db28..c734c60 100644
--- a/gas/config/tc-v850.h
+++ b/gas/config/tc-v850.h
@@ -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
-- 
2.7.0


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]