config.gcc (arm*-*-eabi*): Treat arm*eb as big-endian.

2013-02-22  Seth LaForge  <sethml@google.com>

	* config.gcc (arm*-*-eabi*): Treat arm*eb as big-endian.

From-SVN: r196221
This commit is contained in:
Seth LaForge 2013-02-22 15:57:17 +00:00 committed by Richard Earnshaw
parent e023778028
commit ac8d93a742
2 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2013-02-22 Seth LaForge <sethml@google.com>
* config.gcc (arm*-*-eabi*): Treat arm*eb as big-endian.
2013-02-22 Greta Yorsh <Greta.Yorsh@arm.com>
* config/arm/arm.md (split for extendsidi): Update condition.

View File

@ -900,6 +900,10 @@ arm*-*-uclinux*eabi*) # ARM ucLinux
default_use_cxa_atexit=yes
;;
arm*-*-eabi* | arm*-*-symbianelf* | arm*-*-rtems*)
case ${target} in
arm*eb-*-eabi*)
tm_defines="${tm_defines} TARGET_BIG_ENDIAN_DEFAULT=1"
esac
# The BPABI long long divmod functions return a 128-bit value in
# registers r0-r3. Correctly modeling that requires the use of
# TImode.