comparison libdecnumber/dconfig.h @ 67:f6334be47118

update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
author nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
date Tue, 22 Mar 2011 17:18:12 +0900
parents a06113de4d67
children 04ced10e8804
comparison
equal deleted inserted replaced
65:65488c3d617d 67:f6334be47118
1 /* Configure decNumber for either host or target. 1 /* Configure decNumber for either host or target.
2 Copyright (C) 2008, 2009 Free Software Foundation, Inc. 2 Copyright (C) 2008, 2009, 2010 Free Software Foundation, Inc.
3 3
4 This file is part of GCC. 4 This file is part of GCC.
5 5
6 GCC is free software; you can redistribute it and/or modify it under 6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free 7 the terms of the GNU General Public License as published by the Free
26 26
27 #include "tconfig.h" 27 #include "tconfig.h"
28 #include "coretypes.h" 28 #include "coretypes.h"
29 #include "tm.h" 29 #include "tm.h"
30 30
31 #ifndef LIBGCC2_WORDS_BIG_ENDIAN 31 #if __FLOAT_WORD_ORDER__ == __ORDER_BIG_ENDIAN__
32 #define LIBGCC2_WORDS_BIG_ENDIAN WORDS_BIG_ENDIAN
33 #endif
34
35 #ifndef LIBGCC2_FLOAT_WORDS_BIG_ENDIAN
36 #define LIBGCC2_FLOAT_WORDS_BIG_ENDIAN LIBGCC2_WORDS_BIG_ENDIAN
37 #endif
38
39 #if LIBGCC2_FLOAT_WORDS_BIG_ENDIAN
40 #define WORDS_BIGENDIAN 1 32 #define WORDS_BIGENDIAN 1
41 #endif 33 #endif
42 34
43 #else 35 #else
44 36