comparison include/floatformat.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 /* IEEE floating point support declarations, for GDB, the GNU Debugger. 1 /* IEEE floating point support declarations, for GDB, the GNU Debugger.
2 Copyright 1991, 1994, 1995, 1997, 2000, 2003, 2005 2 Copyright 1991, 1994, 1995, 1997, 2000, 2003, 2005, 2010
3 Free Software Foundation, Inc. 3 Free Software Foundation, Inc.
4 4
5 This file is part of GDB. 5 This file is part of GDB.
6 6
7 This program is free software; you can redistribute it and/or modify 7 This program is free software; you can redistribute it and/or modify
94 const struct floatformat *split_half; 94 const struct floatformat *split_half;
95 }; 95 };
96 96
97 /* floatformats for IEEE single and double, big and little endian. */ 97 /* floatformats for IEEE single and double, big and little endian. */
98 98
99 extern const struct floatformat floatformat_ieee_half_big;
100 extern const struct floatformat floatformat_ieee_half_little;
99 extern const struct floatformat floatformat_ieee_single_big; 101 extern const struct floatformat floatformat_ieee_single_big;
100 extern const struct floatformat floatformat_ieee_single_little; 102 extern const struct floatformat floatformat_ieee_single_little;
101 extern const struct floatformat floatformat_ieee_double_big; 103 extern const struct floatformat floatformat_ieee_double_big;
102 extern const struct floatformat floatformat_ieee_double_little; 104 extern const struct floatformat floatformat_ieee_double_little;
103 105