Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions bfd/archures.c
Original file line number Diff line number Diff line change
Expand Up @@ -454,6 +454,7 @@ DESCRIPTION
.#define bfd_mach_rx 0x75
.#define bfd_mach_rx_v2 0x76
.#define bfd_mach_rx_v3 0x77
.#define bfd_mach_rx_v3_dfpu 0x78
. bfd_arch_s390, {* IBM s390. *}
.#define bfd_mach_s390_31 31
.#define bfd_mach_s390_64 64
Expand Down
1 change: 1 addition & 0 deletions bfd/bfd-in2.h
Original file line number Diff line number Diff line change
Expand Up @@ -1715,6 +1715,7 @@ enum bfd_architecture
#define bfd_mach_rx 0x75
#define bfd_mach_rx_v2 0x76
#define bfd_mach_rx_v3 0x77
#define bfd_mach_rx_v3_dfpu 0x78
bfd_arch_s390, /* IBM s390. */
#define bfd_mach_s390_31 31
#define bfd_mach_s390_64 64
Expand Down
11 changes: 6 additions & 5 deletions bfd/cpu-rx.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* BFD support for the RX processor.
Copyright (C) 2008-2024 Free Software Foundation, Inc.
Copyright (C) 2008-2025 Free Software Foundation, Inc.

This file is part of BFD, the Binary File Descriptor library.

Expand Down Expand Up @@ -27,12 +27,13 @@
bfd_default_compatible, bfd_default_scan, \
bfd_arch_default_fill, next, 0 }

static const bfd_arch_info_type arch_info_struct[2] =
static const bfd_arch_info_type arch_info_struct[4] =
{
N (bfd_mach_rx_v2, "rx:v2", 3, false, arch_info_struct + 1),
N (bfd_mach_rx_v3, "rx:v3", 3, false, NULL)
N (bfd_mach_rx, "rx", 3, false, arch_info_struct + 1),
N (bfd_mach_rx_v2, "rx:v2", 3, false, arch_info_struct + 2),
N (bfd_mach_rx_v3, "rx:v3", 3, false, arch_info_struct + 3),
N (bfd_mach_rx_v3_dfpu, "rx:v3", 3, false, NULL)
};

const bfd_arch_info_type bfd_rx_arch =
N (bfd_mach_rx, "rx", 4, true, arch_info_struct + 0);

Loading