aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Blundell <philb@gnu.org>2000-12-29 12:49:37 +0000
committerPhil Blundell <pb@gcc.gnu.org>2000-12-29 12:49:37 +0000
commit5184f7c5e17e5f3a6a1ffbfa8eb9f31c4cb38166 (patch)
treea6ca44028892f58375fe5900883ad443b372ff04
parent50f9ca2f0cf9f99a0686381e2f9818151c2933d9 (diff)
downloadgcc-5184f7c5e17e5f3a6a1ffbfa8eb9f31c4cb38166.zip
gcc-5184f7c5e17e5f3a6a1ffbfa8eb9f31c4cb38166.tar.gz
gcc-5184f7c5e17e5f3a6a1ffbfa8eb9f31c4cb38166.tar.bz2
Fix typo.
From-SVN: r38534
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/config/arm/arm.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 476801b..e709542 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2000-12-29 Philip Blundell <philb@gnu.org>
+
+ * config/arm/arm.c (arm_override_options): Fix typo in warning
+ message.
+
2000-12-29 Richard Henderson <rth@redhat.com>
* config/alpha/alpha.c (alpha_expand_block_move): Initialize
diff --git a/gcc/config/arm/arm.c b/gcc/config/arm/arm.c
index 7e092c4..5511f11 100644
--- a/gcc/config/arm/arm.c
+++ b/gcc/config/arm/arm.c
@@ -521,7 +521,7 @@ arm_override_options ()
if (TARGET_THUMB && !(insn_flags & FL_THUMB))
{
- warning ("target CPU does not supoport THUMB instructions.");
+ warning ("target CPU does not support THUMB instructions.");
target_flags &= ~ARM_FLAG_THUMB;
}