Apply patch from Philip Blundell to allow .previous to work for arm-elf

This commit is contained in:
Nick Clifton 1999-12-22 19:44:15 +00:00
parent cb665cd3e2
commit df32bc61b0
2 changed files with 15 additions and 1 deletions

View File

@ -1,7 +1,13 @@
1999-12-22 Philip Blundell <pb@futuretv.com>
* 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 <nickc@cygnus.com>
* 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)

View File

@ -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