]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Add ARM920 and ARM920t.
authorNick Clifton <nickc@cygnus.com>
Thu, 10 Jun 1999 07:09:19 +0000 (07:09 +0000)
committerNick Clifton <nickc@gcc.gnu.org>
Thu, 10 Jun 1999 07:09:19 +0000 (07:09 +0000)
From-SVN: r27466

gcc/ChangeLog
gcc/config/arm/arm.c

index f0860c217d02e9edb8b20130daea161e99cfb546..c52ae7ea71c2108ef2652b8edebc72ed61dea810 100644 (file)
@@ -1,3 +1,7 @@
+Thu Jun 10 15:08:15 1999  Nick Clifton  <nickc@cygnus.com>
+
+       * config/arm/arm.c (struct all_cores): Add ARM920 and ARM920t.
+
 Wed Jun  9 15:57:57 1999  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
 
        * rs6000.md (movsi_got_internal_mem): Delete.
index eb18be781af59088495c54ab3af771cc022843f6..ae9572b7f9a20ee21fb10ec0579df463d4224b11 100644 (file)
@@ -215,6 +215,8 @@ static struct processors all_cores[] =
   {"arm8",                  FL_MODE26 | FL_MODE32 | FL_FAST_MULT | FL_ARCH4 |            FL_LDSCHED },
   {"arm810",                FL_MODE26 | FL_MODE32 | FL_FAST_MULT | FL_ARCH4 |            FL_LDSCHED },
   {"arm9",                              FL_MODE32 | FL_FAST_MULT | FL_ARCH4 | FL_THUMB | FL_LDSCHED },
+  {"arm920",                            FL_MODE32 | FL_FAST_MULT | FL_ARCH4 |            FL_LDSCHED },
+  {"arm920t",                           FL_MODE32 | FL_FAST_MULT | FL_ARCH4 | FL_THUMB | FL_LDSCHED },
   {"arm9tdmi",                          FL_MODE32 | FL_FAST_MULT | FL_ARCH4 | FL_THUMB | FL_LDSCHED },
   {"strongarm",                     FL_MODE26 | FL_MODE32 | FL_FAST_MULT | FL_ARCH4 |            FL_LDSCHED | FL_STRONG },
   {"strongarm110",           FL_MODE26 | FL_MODE32 | FL_FAST_MULT | FL_ARCH4 |            FL_LDSCHED | FL_STRONG },
@@ -294,7 +296,7 @@ arm_override_options ()
                       a warning though, and we prefer the CPU over the
                       architecture. */
                    if (insn_flags != 0 && (insn_flags ^ sel->flags))
-                     warning ("switch -mcpu=%s conflicts with -march= switch", 
+                     warning ("switch -mcpu=%s conflicts with -march= switch",
                               ptr->string);
                    
                    insn_flags = sel->flags;