aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@b1.cygnus.com>2000-05-31 11:00:54 +0000
committerAndrew Cagney <cagney@gcc.gnu.org>2000-05-31 11:00:54 +0000
commit0b72c3df6ba5a80e512032d57b5b00fc0b231497 (patch)
tree5527ffba0c889f66123a041cb15a288d014cc42c /include
parentecc9dd932a3a296e3fccee2a61af4ec57ba8bbee (diff)
downloadgcc-0b72c3df6ba5a80e512032d57b5b00fc0b231497.zip
gcc-0b72c3df6ba5a80e512032d57b5b00fc0b231497.tar.gz
gcc-0b72c3df6ba5a80e512032d57b5b00fc0b231497.tar.bz2
Add field ``name'' to floatformat.
From-SVN: r34292
Diffstat (limited to 'include')
-rw-r--r--include/ChangeLog4
-rw-r--r--include/floatformat.h5
2 files changed, 8 insertions, 1 deletions
diff --git a/include/ChangeLog b/include/ChangeLog
index 5a0ddf5..2bd3e65 100644
--- a/include/ChangeLog
+++ b/include/ChangeLog
@@ -1,3 +1,7 @@
+Tue May 30 16:53:34 2000 Andrew Cagney <cagney@b1.cygnus.com>
+
+ * floatformat.h (struct floatformat): Add field name.
+
2000-05-23 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* getopt.h (getopt): Also check HAVE_DECL_* when prototyping.
diff --git a/include/floatformat.h b/include/floatformat.h
index 90daca2..e4d1d15 100644
--- a/include/floatformat.h
+++ b/include/floatformat.h
@@ -1,5 +1,5 @@
/* IEEE floating point support declarations, for GDB, the GNU Debugger.
- Copyright (C) 1991 Free Software Foundation, Inc.
+ Copyright (C) 1991, 2000 Free Software Foundation, Inc.
This file is part of GDB.
@@ -73,6 +73,9 @@ struct floatformat
/* Is the integer bit explicit or implicit? */
enum floatformat_intbit intbit;
+
+ /* Internal name for debugging. */
+ const char *name;
};
/* floatformats for IEEE single and double, big and little endian. */