aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorAndrew Burgess <aburgess@redhat.com>2022-08-11 15:57:26 +0100
committerAndrew Burgess <aburgess@redhat.com>2022-08-14 14:54:26 +0100
commitceb3ca2f7d700f79bd3d7f7d3c9aee204e344127 (patch)
tree82ae29114d3a7c1d63ccdc07a916020f32bb6acc /gdb
parentaef4b7a5cc7ba4fb681a0675529000d91dc0aa72 (diff)
downloadfsf-binutils-gdb-ceb3ca2f7d700f79bd3d7f7d3c9aee204e344127.zip
fsf-binutils-gdb-ceb3ca2f7d700f79bd3d7f7d3c9aee204e344127.tar.gz
fsf-binutils-gdb-ceb3ca2f7d700f79bd3d7f7d3c9aee204e344127.tar.bz2
gdb/nds32: update features/nds32.c
After this commit: commit 7b7c365c5c663ffdfb2b3f696db35c23cdccd921 Date: Wed Sep 15 10:10:46 2021 +0200 [bfd] Ensure unique printable names for bfd archs The printable name field of the default nds32 bfd_arch_info changed from 'n1h' to 'n1'. As a consequence the generated feature file within GDB should have been recreated. Recreate it now.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/features/nds32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/features/nds32.c b/gdb/features/nds32.c
index ed535b5..4e52016 100644
--- a/gdb/features/nds32.c
+++ b/gdb/features/nds32.c
@@ -10,7 +10,7 @@ static void
initialize_tdesc_nds32 (void)
{
target_desc_up result = allocate_target_description ();
- set_tdesc_architecture (result.get (), bfd_scan_arch ("n1h"));
+ set_tdesc_architecture (result.get (), bfd_scan_arch ("n1"));
struct tdesc_feature *feature;