From: Nick Clifton Date: Wed, 22 Dec 1999 19:44:15 +0000 (+0000) Subject: Apply patch from Philip Blundell to allow .previous to work for arm-elf X-Git-Tag: gdb-1999-12-21~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=df32bc61b0e5b3468be1c2cb247846cdf15c92a2;p=external%2Fbinutils.git Apply patch from Philip Blundell to allow .previous to work for arm-elf --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 366fd05..39fb313 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,7 +1,13 @@ +1999-12-22 Philip Blundell + + * config/tc-arm.c (arm_s_text): If OBJ_ELF, call the appropriate + hook function when changing sections. + (arm_s_data): Likewise. + 1999-12-14 Nick Clifton * config/tc-arm.c (md_parse_option): Add support for -marm720 -x command line switch. + command line switch. Tue Nov 30 22:59:00 1999 Jeffrey A Law (law@cygnus.com) diff --git a/gas/config/tc-arm.c b/gas/config/tc-arm.c index eeb3c4c..108d6b0 100644 --- a/gas/config/tc-arm.c +++ b/gas/config/tc-arm.c @@ -1383,7 +1383,11 @@ arm_s_text (ignore) if (now_seg != text_section) s_ltorg (0); +#ifdef OBJ_ELF + obj_elf_text (ignore); +#else s_text (ignore); +#endif } static void @@ -1398,7 +1402,11 @@ arm_s_data (ignore) else if (now_seg != data_section) s_ltorg (0); +#ifdef OBJ_ELF + obj_elf_data (ignore); +#else s_data (ignore); +#endif } #ifdef OBJ_ELF