diff options
author | Andre Vieira <andre.simoesdiasvieira@arm.com> | 2016-12-05 09:44:24 +0000 |
---|---|---|
committer | Andre Vieira <avieira@gcc.gnu.org> | 2016-12-05 09:44:24 +0000 |
commit | 5ffd5f36962aa5d2984f7453b553ef8076bd2e84 (patch) | |
tree | bcb7c336aa540826a40e2e7d173a36c09a4b2088 /gcc | |
parent | 648e17d28df124d8eac937babae804262d605499 (diff) | |
download | gcc-5ffd5f36962aa5d2984f7453b553ef8076bd2e84.zip gcc-5ffd5f36962aa5d2984f7453b553ef8076bd2e84.tar.gz gcc-5ffd5f36962aa5d2984f7453b553ef8076bd2e84.tar.bz2 |
Fix arm-netbsdelf bootstrap.
2016-12-025 Andre Vieira <andre.simoesdiasvieira@arm.com>
* config/arm/arm.c (TARGET_ASM_INIT_SECTIONS): Fix wrong undef
location.
From-SVN: r243240
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/arm/arm.c | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 730044c..5d66a96 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2016-12-025 Andre Vieira <andre.simoesdiasvieira@arm.com> + + * config/arm/arm.c (TARGET_ASM_INIT_SECTIONS): Fix wrong undef + location. + 2016-12-05 Eric Botcazou <ebotcazou@adacore.com> * config/sparc/sparc-protos.h (sparc_splitdi_legitimate): Rename to... diff --git a/gcc/config/arm/arm.c b/gcc/config/arm/arm.c index ec1f5fc..437da6f 100644 --- a/gcc/config/arm/arm.c +++ b/gcc/config/arm/arm.c @@ -595,8 +595,9 @@ static const struct attribute_spec arm_attribute_table[] = #undef TARGET_ASM_EMIT_EXCEPT_PERSONALITY #define TARGET_ASM_EMIT_EXCEPT_PERSONALITY arm_asm_emit_except_personality -#undef TARGET_ASM_INIT_SECTIONS #endif /* ARM_UNWIND_INFO */ + +#undef TARGET_ASM_INIT_SECTIONS #define TARGET_ASM_INIT_SECTIONS arm_asm_init_sections #undef TARGET_DWARF_REGISTER_SPAN |