diff options
author | Ramana Radhakrishnan <ramana@gcc.gnu.org> | 2014-11-04 09:45:22 +0000 |
---|---|---|
committer | Ramana Radhakrishnan <ramana@gcc.gnu.org> | 2014-11-04 09:45:22 +0000 |
commit | 5d1f63255b8f92d07c36a2098f93f0b7531c2ef9 (patch) | |
tree | 108b60d5d20594543041e7291f4e30c3adfb624e | |
parent | 06c0c6fa0c2e9e035b5605098243754fcba549f3 (diff) | |
download | gcc-5d1f63255b8f92d07c36a2098f93f0b7531c2ef9.zip gcc-5d1f63255b8f92d07c36a2098f93f0b7531c2ef9.tar.gz gcc-5d1f63255b8f92d07c36a2098f93f0b7531c2ef9.tar.bz2 |
Fix typo in definition of __ARM_FEATURE_IDIV
From-SVN: r217073
-rw-r--r-- | gcc/config/arm/arm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/arm/arm.h b/gcc/config/arm/arm.h index 17503df..0bc6006 100644 --- a/gcc/config/arm/arm.h +++ b/gcc/config/arm/arm.h @@ -166,7 +166,7 @@ extern char arm_arch_name[]; if (TARGET_IDIV) \ { \ builtin_define ("__ARM_ARCH_EXT_IDIV__"); \ - builtin_define ("__ARM_FEATURE_IDIV__"); \ + builtin_define ("__ARM_FEATURE_IDIV"); \ } \ } while (0) |