From c3c89269f8afef30bf467225f538d56daf57e245 Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Mon, 19 Jul 1999 14:55:16 +0000 Subject: Add new field to bfd_target structure. Initialise this field for all known bfd targets. Add new search function to targets.c --- bfd/aout-arm.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'bfd/aout-arm.c') diff --git a/bfd/aout-arm.c b/bfd/aout-arm.c index a2c6326..7365f9d 100644 --- a/bfd/aout-arm.c +++ b/bfd/aout-arm.c @@ -467,6 +467,8 @@ MY_swap_std_reloc_out (abfd, g, natptr) #include "aout-target.h" +extern const bfd_target aout_arm_big_vec; + const bfd_target aout_arm_little_vec = { "a.out-arm-little", /* name */ @@ -503,6 +505,8 @@ const bfd_target aout_arm_little_vec = BFD_JUMP_TABLE_LINK (MY), BFD_JUMP_TABLE_DYNAMIC (MY), + & aout_arm_big_vec, + (PTR) MY_backend_data, }; @@ -542,5 +546,7 @@ const bfd_target aout_arm_big_vec = BFD_JUMP_TABLE_LINK (MY), BFD_JUMP_TABLE_DYNAMIC (MY), + & aout_arm_little_vec, + (PTR) MY_backend_data, }; -- cgit v1.1