diff options
author | Paul Brook <paul@codesourcery.com> | 2011-05-31 14:12:55 +0000 |
---|---|---|
committer | Paul Brook <paul@codesourcery.com> | 2011-05-31 14:12:55 +0000 |
commit | 3b2f07930444a96217805d28af12dc5edd65b20d (patch) | |
tree | 8e6e4b7ff5ff3684db863f04e574cca607e4117e /include | |
parent | b58843019a8b7cb79ea5335498bb06c1d59d5d03 (diff) | |
download | gdb-3b2f07930444a96217805d28af12dc5edd65b20d.zip gdb-3b2f07930444a96217805d28af12dc5edd65b20d.tar.gz gdb-3b2f07930444a96217805d28af12dc5edd65b20d.tar.bz2 |
2011-05-31 Paul Brook <paul@codesourcery.com>
gas/
* config/tc-arm.c (arm_cpus): Add Cortex-R5.
(arm_extensions): Allow idiv on ARMv7-R.
* doc/c-arm.text: Update idiv extension restrictions.
gas/testsuite/
* gas/arm/arm-idiv-bad.d: New test.
* gas/arm/arm-idiv-bad.s: New test.
* gas/arm/arm-idiv-bad.l: New test.
* gas/arm/arm-idiv.d: New test.
* gas/arm/arm-idiv.s: New test.
include/
* opcode/arm.h (ARM_ARCH_V7R_IDIV): Define.
Diffstat (limited to 'include')
-rw-r--r-- | include/opcode/ChangeLog | 4 | ||||
-rw-r--r-- | include/opcode/arm.h | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/include/opcode/ChangeLog b/include/opcode/ChangeLog index e148e8d..1324467 100644 --- a/include/opcode/ChangeLog +++ b/include/opcode/ChangeLog @@ -1,3 +1,7 @@ +2011-05-31 Paul Brook <paul@codesourcery.com> + + * opcode/arm.h (ARM_ARCH_V7R_IDIV): Define. + 2011-04-18 Julian Brown <julian@codesourcery.com> * arm.h (ARM_AEXT_V7_ARM): Remove ARM_EXT_OS from bitmask. diff --git a/include/opcode/arm.h b/include/opcode/arm.h index 297ca63..86e3d67 100644 --- a/include/opcode/arm.h +++ b/include/opcode/arm.h @@ -229,6 +229,8 @@ ARM_FEATURE (ARM_AEXT_V7A | ARM_EXT_MP | ARM_EXT_SEC \ | ARM_EXT_DIV | ARM_EXT_ADIV \ | ARM_EXT_VIRT, 0) +/* v7-r+idiv. */ +#define ARM_ARCH_V7R_IDIV ARM_FEATURE (ARM_AEXT_V7R | ARM_EXT_ADIV, 0) /* Features that are present in v6M and v6S-M but not other v6 cores. */ #define ARM_ARCH_V6M_ONLY ARM_FEATURE (ARM_AEXT_V6M_ONLY, 0) |