From: Christophe Lyon Date: Wed, 29 Apr 2020 09:55:45 +0000 (+0000) Subject: arm: Remove duplicate entries in isr_attribute_args [PR target/57002] X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=03afbf335776916724b0608c256495c04a369d2b;p=gcc.git arm: Remove duplicate entries in isr_attribute_args [PR target/57002] Remove two duplicate entries in isr_attribute_args ("abort" and "ABORT"). 2020-04-30 Christophe Lyon PR target/57002 gcc/ * config/arm/arm.c (isr_attribute_args): Remove duplicate entries. --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9de23aaaefa..3769a91999f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2020-04-30 Christophe Lyon + + PR target/57002 + * config/arm/arm.c (isr_attribute_args): Remove duplicate entries. + 2020-04-30 Andreas Krebbel * config/s390/constraints.md ("j>f", "jb4"): New constraints. diff --git a/gcc/config/arm/arm.c b/gcc/config/arm/arm.c index 9087e6c2ab4..29f2a0c2967 100644 --- a/gcc/config/arm/arm.c +++ b/gcc/config/arm/arm.c @@ -3925,8 +3925,6 @@ static const isr_attribute_arg isr_attribute_args [] = { "fiq", ARM_FT_FIQ }, { "ABORT", ARM_FT_ISR }, { "abort", ARM_FT_ISR }, - { "ABORT", ARM_FT_ISR }, - { "abort", ARM_FT_ISR }, { "UNDEF", ARM_FT_EXCEPTION }, { "undef", ARM_FT_EXCEPTION }, { "SWI", ARM_FT_EXCEPTION },