merge from gcc
This commit is contained in:
parent
94b6973efe
commit
531ff9fd96
4 changed files with 11 additions and 6 deletions
|
@ -1,3 +1,8 @@
|
|||
2010-11-24 Nathan Froyd <froydnj@codesourcery.com>
|
||||
|
||||
* dconfig.h (LIBGCC2_FLOAT_WORDS_BIG_ENDIAN): Delete.
|
||||
(WORDS_BIG_ENDIAN): Define based on value of __FLOAT_WORD_ORDER__.
|
||||
|
||||
2010-10-23 Nathan Froyd <froydnj@codesourcery.com>
|
||||
|
||||
* dconfig.h (LIBGCC2_WORDS_BIG_ENDIAN): Delete.
|
||||
|
|
|
@ -28,12 +28,7 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
|
|||
#include "coretypes.h"
|
||||
#include "tm.h"
|
||||
|
||||
#ifndef LIBGCC2_FLOAT_WORDS_BIG_ENDIAN
|
||||
#define LIBGCC2_FLOAT_WORDS_BIG_ENDIAN \
|
||||
(__BYTE_ORDER__ != __ORDER_LITTLE_ENDIAN__)
|
||||
#endif
|
||||
|
||||
#if LIBGCC2_FLOAT_WORDS_BIG_ENDIAN
|
||||
#if __FLOAT_WORD_ORDER__ == __ORDER_BIG_ENDIAN__
|
||||
#define WORDS_BIGENDIAN 1
|
||||
#endif
|
||||
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
2010-11-29 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
|
||||
|
||||
* setproctitle.c [HAVE_SYS_PRCTL_H]: Include <sys/types.h>.
|
||||
|
||||
2010-11-20 Anthony Green <green@moxielogic.com>
|
||||
|
||||
* configure.ac: Turn PR_SET_NAME link test into a test for
|
||||
|
|
|
@ -21,6 +21,7 @@ Boston, MA 02110-1301, USA. */
|
|||
#include "config.h"
|
||||
#endif
|
||||
#ifdef HAVE_SYS_PRCTL_H
|
||||
#include <sys/types.h>
|
||||
#include <sys/prctl.h>
|
||||
#endif
|
||||
#include "ansidecl.h"
|
||||
|
|
Loading…
Reference in a new issue