aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bfd/ChangeLog7
-rw-r--r--bfd/cpu-v850.c2
-rw-r--r--bfd/cpu-v850_rh850.c2
-rw-r--r--ld/ChangeLog5
-rw-r--r--ld/scripttempl/v850.sc2
-rw-r--r--ld/scripttempl/v850_rh850.sc2
6 files changed, 16 insertions, 4 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index d0dfd9b..b2075e4 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,10 @@
+2016-03-09 Pedro Alves <palves@redhat.com>
+
+ * cpu-v850.c (N): Append ":old-gcc-abi" instead of " (using old
+ gcc ABI)" to printable name.
+ * cpu-v850_rh850.c (bfd_v850_rh850_arch): Use "v850:rh850" instead
+ of "v850-rh850" as printable name.
+
2016-03-09 Leon Winter <winter-gcc@bfw-online.de>
PR ld/19623
diff --git a/bfd/cpu-v850.c b/bfd/cpu-v850.c
index 472c578..d82d4c0 100644
--- a/bfd/cpu-v850.c
+++ b/bfd/cpu-v850.c
@@ -24,7 +24,7 @@
#include "safe-ctype.h"
#define N(number, print, default, next) \
-{ 32, 32, 8, bfd_arch_v850, number, "v850", print " (using old gcc ABI)", 2, default, \
+{ 32, 32, 8, bfd_arch_v850, number, "v850", print ":old-gcc-abi", 2, default, \
bfd_default_compatible, bfd_default_scan, bfd_arch_default_fill, next }
#define NEXT NULL
diff --git a/bfd/cpu-v850_rh850.c b/bfd/cpu-v850_rh850.c
index 3b58887..e86749b 100644
--- a/bfd/cpu-v850_rh850.c
+++ b/bfd/cpu-v850_rh850.c
@@ -38,4 +38,4 @@ static const bfd_arch_info_type arch_info_struct[] =
};
const bfd_arch_info_type bfd_v850_rh850_arch =
- R (bfd_mach_v850, "v850-rh850", TRUE, & arch_info_struct[0]);
+ R (bfd_mach_v850, "v850:rh850", TRUE, & arch_info_struct[0]);
diff --git a/ld/ChangeLog b/ld/ChangeLog
index 8776e4c..f29a3ab 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -1,3 +1,8 @@
+2016-03-09 Pedro Alves <palves@redhat.com>
+
+ * scripttempl/v850.sc: Use "v850:old-gcc-abi" as OUTPUT_ARCH.
+ * scripttempl/v850_rh850.sc: Use "v850:rh850" as OUTPUT_ARCH.
+
2016-03-08 H.J. Lu <hongjiu.lu@intel.com>
PR ld/19789
diff --git a/ld/scripttempl/v850.sc b/ld/scripttempl/v850.sc
index e338bf1..cf7cd20 100644
--- a/ld/scripttempl/v850.sc
+++ b/ld/scripttempl/v850.sc
@@ -13,7 +13,7 @@ cat << EOF
OUTPUT_FORMAT("elf32-v850", "elf32-v850",
"elf32-v850")
-OUTPUT_ARCH(v850)
+OUTPUT_ARCH(v850:old-gcc-abi)
${RELOCATING+ENTRY(_start)}
SEARCH_DIR(.);
EXTERN(__ctbp __ep __gp);
diff --git a/ld/scripttempl/v850_rh850.sc b/ld/scripttempl/v850_rh850.sc
index 06e5243..a44b9b5 100644
--- a/ld/scripttempl/v850_rh850.sc
+++ b/ld/scripttempl/v850_rh850.sc
@@ -13,7 +13,7 @@ cat << EOF
OUTPUT_FORMAT("elf32-v850-rh850", "elf32-v850-rh850",
"elf32-v850-rh850")
-OUTPUT_ARCH(v850-rh850)
+OUTPUT_ARCH(v850:rh850)
${RELOCATING+ENTRY(_start)}
SEARCH_DIR(.);
EXTERN(__ctbp __ep __gp);