Commit 01e4596e by Bob Wilson Committed by Bob Wilson

xtensa.h (LIBGCC2_WORDS_BIG_ENDIAN): Set this based on preprocessor flag.

        * config/xtensa/xtensa.h (LIBGCC2_WORDS_BIG_ENDIAN): Set this
        based on preprocessor flag.

From-SVN: r62534
parent fbef91d8
2003-02-07 Bob Wilson <bob.wilson@acm.org>
* config/xtensa/xtensa.h (LIBGCC2_WORDS_BIG_ENDIAN): Set this
based on preprocessor flag.
2003-02-07 Roger Sayle <roger@eyesopen.com> 2003-02-07 Roger Sayle <roger@eyesopen.com>
Richard Henderson <rth@redhat.com> Richard Henderson <rth@redhat.com>
......
...@@ -208,9 +208,11 @@ extern unsigned xtensa_current_frame_size; ...@@ -208,9 +208,11 @@ extern unsigned xtensa_current_frame_size;
} \ } \
} while (0) } while (0)
/* Define this to set the endianness to use in libgcc2.c, which can #ifdef __XTENSA_EB__
not depend on target_flags. */ #define LIBGCC2_WORDS_BIG_ENDIAN 1
#define LIBGCC2_WORDS_BIG_ENDIAN XCHAL_HAVE_BE #else
#define LIBGCC2_WORDS_BIG_ENDIAN 0
#endif
/* Show we can debug even without a frame pointer. */ /* Show we can debug even without a frame pointer. */
#define CAN_DEBUG_WITHOUT_FP #define CAN_DEBUG_WITHOUT_FP
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment