This is the mail archive of the binutils-cvs@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]

[binutils-gdb] ft32: fixup TARGET_FORMAT


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=b19e0aeb53c77e0dbb2083c18dcb0a154db99d17

commit b19e0aeb53c77e0dbb2083c18dcb0a154db99d17
Author: Trevor Saunders <tbsaunde+binutils@tbsaunde.org>
Date:   Sat May 21 04:21:32 2016 -0400

    ft32: fixup TARGET_FORMAT
    
    Nothing ever assigns to ft32_target_format, so its always null, which means the
    bfd target arch is the default one.  It looks like ft32 only has one target
    format, so we can just define TARGET_FORMAT to be that literal string.
    
    gas/ChangeLog:
    
    2016-05-24  Trevor Saunders  <tbsaunde+binutils@tbsaunde.org>
    
    	* config/tc-ft32.h (DEFAULT_TARGET_FORMAT): Remove.
    	(ft32_target_format): Likewise.
    	(TARGET_FORMAT): Adjust.

Diff:
---
 gas/ChangeLog        | 6 ++++++
 gas/config/tc-ft32.h | 4 +---
 2 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/gas/ChangeLog b/gas/ChangeLog
index a7f1a18..eca2c12 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,5 +1,11 @@
 2016-05-24  Trevor Saunders  <tbsaunde+binutils@tbsaunde.org>
 
+	* config/tc-ft32.h (DEFAULT_TARGET_FORMAT): Remove.
+	(ft32_target_format): Likewise.
+	(TARGET_FORMAT): Adjust.
+
+2016-05-24  Trevor Saunders  <tbsaunde+binutils@tbsaunde.org>
+
 	* config/tc-ia64.c (dot_rot): simplify allocations from obstacks.
 	(ia64_frob_label): Likewise.
 
diff --git a/gas/config/tc-ft32.h b/gas/config/tc-ft32.h
index 7b92a29..3829331 100644
--- a/gas/config/tc-ft32.h
+++ b/gas/config/tc-ft32.h
@@ -24,9 +24,7 @@
 #define WORKING_DOT_WORD
 
 /* This macro is the BFD architecture to pass to `bfd_set_arch_mach'.  */
-const char *ft32_target_format;
-#define DEFAULT_TARGET_FORMAT  "elf32-ft32"
-#define TARGET_FORMAT          ft32_target_format
+#define TARGET_FORMAT  "elf32-ft32"
 
 #define TARGET_ARCH bfd_arch_ft32


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