diff options
author | bje <bje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-03-06 01:34:05 +0000 |
---|---|---|
committer | bje <bje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-03-06 01:34:05 +0000 |
commit | ad0d48bcb8918aef69e55f61af30805ab36fa45d (patch) | |
tree | 1f00330605c273f63a2b80e1f2b1d0b878fc86e0 | |
parent | f048f83b805f1c22deff01354d23060609db1895 (diff) | |
download | gcc-ad0d48bcb8918aef69e55f61af30805ab36fa45d.tar.gz |
* config/dfp-bit.h (LIBGCC2_WORDS_BIG_ENDIAN): Define.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@111753 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ChangeLog | 1 | ||||
-rw-r--r-- | gcc/config/dfp-bit.h | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6d1858e9194..713be1a0471 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -4,6 +4,7 @@ x86_64-*-linux* configurations. * config/dfp-bit.h (CMPtype): Typedef to a word mode integer. + (LIBGCC2_WORDS_BIG_ENDIAN): Define. 2006-03-05 Kazu Hirata <kazu@codesourcery.com> diff --git a/gcc/config/dfp-bit.h b/gcc/config/dfp-bit.h index c81e50f4054..a6c7798982b 100644 --- a/gcc/config/dfp-bit.h +++ b/gcc/config/dfp-bit.h @@ -34,6 +34,10 @@ Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA #include "coretypes.h" #include "tm.h" +#ifndef LIBGCC2_WORDS_BIG_ENDIAN +#define LIBGCC2_WORDS_BIG_ENDIAN WORDS_BIG_ENDIAN +#endif + #ifndef LIBGCC2_FLOAT_WORDS_BIG_ENDIAN #define LIBGCC2_FLOAT_WORDS_BIG_ENDIAN LIBGCC2_WORDS_BIG_ENDIAN #endif |