aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAldy Hernandez <aldyh@redhat.com>2005-07-26 21:22:44 +0000
committerAldy Hernandez <aldyh@gcc.gnu.org>2005-07-26 21:22:44 +0000
commitfaf9ab985cd148e516b7254455707d5aabe4f277 (patch)
treecb7655bdf45859920f0a6eb44f388b3440a05646
parent31521cd4e243e9108e23a6a0f668a7e958d0d05b (diff)
downloadgcc-faf9ab985cd148e516b7254455707d5aabe4f277.zip
gcc-faf9ab985cd148e516b7254455707d5aabe4f277.tar.gz
gcc-faf9ab985cd148e516b7254455707d5aabe4f277.tar.bz2
config.gcc (cpu_type): Add frv case.
* config.gcc (cpu_type): Add frv case. (with_cpu): Add frv400-*-*linux* and frv550-*-*linux* cases. (supported_defaults): Add fr550 case. From-SVN: r102400
-rw-r--r--gcc/ChangeLog6
-rw-r--r--gcc/config.gcc8
2 files changed, 13 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 614b253..8923d35 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -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
diff --git a/gcc/config.gcc b/gcc/config.gcc
index 0361c35..8ea8115 100644
--- a/gcc/config.gcc
+++ b/gcc/config.gcc
@@ -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