diff options
author | Christophe Lyon <christophe.lyon@linaro.org> | 2020-04-29 09:55:45 +0000 |
---|---|---|
committer | Christophe Lyon <christophe.lyon@linaro.org> | 2020-04-30 08:43:30 +0000 |
commit | 03afbf335776916724b0608c256495c04a369d2b (patch) | |
tree | 40af70342ac5dc62e2bb2390f6c895dee554d473 /gcc | |
parent | cd5fa733599d86d344aa42752a30fefa0fb668dd (diff) | |
download | gcc-03afbf335776916724b0608c256495c04a369d2b.zip gcc-03afbf335776916724b0608c256495c04a369d2b.tar.gz gcc-03afbf335776916724b0608c256495c04a369d2b.tar.bz2 |
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 <christophe.lyon@linaro.org>
PR target/57002
gcc/
* config/arm/arm.c (isr_attribute_args): Remove duplicate entries.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/arm/arm.c | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9de23aa..3769a91 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2020-04-30 Christophe Lyon <christophe.lyon@linaro.org> + + PR target/57002 + * config/arm/arm.c (isr_attribute_args): Remove duplicate entries. + 2020-04-30 Andreas Krebbel <krebbel@linux.ibm.com> * config/s390/constraints.md ("j>f", "jb4"): New constraints. diff --git a/gcc/config/arm/arm.c b/gcc/config/arm/arm.c index 9087e6c..29f2a0c 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 }, |