config.gcc (cpu_type): Add frv case.
authorAldy Hernandez <aldyh@redhat.com>
Tue, 26 Jul 2005 21:22:44 +0000 (21:22 +0000)
committerAldy Hernandez <aldyh@gcc.gnu.org>
Tue, 26 Jul 2005 21:22:44 +0000 (21:22 +0000)
* config.gcc (cpu_type): Add frv case.
(with_cpu): Add frv400-*-*linux* and frv550-*-*linux* cases.
(supported_defaults): Add fr550 case.

From-SVN: r102400

gcc/ChangeLog
gcc/config.gcc

index 614b253760fa4bf8f4372c94cef87da99e35d286..8923d3527968b1813311ca6cf3ad9825765a33c2 100644 (file)
@@ -1,3 +1,9 @@
+2005-07-26  Aldy Hernandez  <aldyh@redhat.com>
+
+       * config.gcc (cpu_type): Add frv case.
+       (with_cpu): Add frv400-*-*linux* and frv550-*-*linux* cases.
+       (supported_defaults): Add fr550 case.
+
 2005-07-26  Diego Novillo  <dnovillo@redhat.com>
 
        PR 22591
index 0361c35459b28fc8c4f6806d5d632e12c3379074..8ea8115617a1b802213fac0d1647279d0cc345d6 100644 (file)
@@ -255,6 +255,8 @@ bfin*-*)
 ep9312*-*-*)
        cpu_type=arm
        ;;
+frv*)  cpu_type=frv
+       ;;
 xscale-*-*)
        cpu_type=arm
        extra_headers="mmintrin.h"
@@ -2379,9 +2381,12 @@ if test x$with_cpu = x ; then
     alphaev5*-*-*)
       with_cpu=ev5
       ;;
-    frv-*-*linux*)
+    frv-*-*linux* | frv400-*-*linux*)
       with_cpu=fr400
       ;;
+    frv550-*-*linux*)
+      with_cpu=fr550
+      ;;
     sparc*-*-*)
       with_cpu="`echo ${target} | sed 's/-.*$//'`"
       if [ x$with_cpu = xsparc64 ]; then
@@ -2514,6 +2519,7 @@ case "${target}" in
                supported_defaults=cpu
                case "$with_cpu" in
                fr400) ;;
+               fr550) ;;
                *)
                        echo "Unknown cpu used in --with-cpu=$with_cpu" 1>&2
                        exit 1