From 152c65b9ca7e927e4a2ecaeb3b594c3ff052c874 Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Thu, 15 Jul 2004 16:26:41 +0000 Subject: [PATCH] Accept armbe as a big-endian arm configuration. --- gas/ChangeLog | 5 +++++ gas/configure | 1 + gas/configure.in | 1 + 3 files changed, 7 insertions(+) diff --git a/gas/ChangeLog b/gas/ChangeLog index 271e8c911a..8340681e6d 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2004-07-15 Nick Clifton + + * configure.in: Accept armbe as a big-endian arm configuration. + * configure: Regenerate. + 2004-07-13 Thomas Nystrom * config/tc-i386.c (T_SHIFTOP): New constant. diff --git a/gas/configure b/gas/configure index e8242be742..08ffddde2f 100755 --- a/gas/configure +++ b/gas/configure @@ -4165,6 +4165,7 @@ for this_target in $target $canon_targets ; do case ${cpu} in am33_2.0) cpu_type=mn10300 endian=little ;; alpha*) cpu_type=alpha ;; + arm*be|xscale*be|strongarm*be | \ arm*b|xscale*b|strongarm*b) cpu_type=arm endian=big ;; arm*|xscale*|strongarm*) cpu_type=arm endian=little ;; c4x*) cpu_type=tic4x ;; diff --git a/gas/configure.in b/gas/configure.in index c80f3e3d44..d8d3e91b35 100644 --- a/gas/configure.in +++ b/gas/configure.in @@ -124,6 +124,7 @@ changequote([,])dnl case ${cpu} in am33_2.0) cpu_type=mn10300 endian=little ;; alpha*) cpu_type=alpha ;; + arm*be|xscale*be|strongarm*be | \ arm*b|xscale*b|strongarm*b) cpu_type=arm endian=big ;; arm*|xscale*|strongarm*) cpu_type=arm endian=little ;; c4x*) cpu_type=tic4x ;;