Allow one to force with issue with 'TARGET_BIG_ENDIAN'.

This commit is contained in:
David E. O'Brien 2006-11-06 02:32:29 +00:00
parent 821cd5328a
commit ffe2c5e5a5
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=164018

View File

@ -7,7 +7,7 @@
/* 1234 = LIL_ENDIAN, 4321 = BIGENDIAN */
#if defined(__sparc64__) || defined(__ARMEB__)
#if defined(__sparc64__) || defined(__ARMEB__) || defined(TARGET_BIG_ENDIAN)
#define BYTEORDER 4321
#else
#define BYTEORDER 1234
@ -325,7 +325,7 @@
/* Define if the host machine stores words of multi-word integers in
big-endian order. */
#if defined(__sparc64__) || defined(__ARMEB__)
#if defined(__sparc64__) || defined(__ARMEB__) || defined(TARGET_BIG_ENDIAN)
#define HOST_WORDS_BIG_ENDIAN 1
#endif