diff options
author | cagney <cagney@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-05-31 11:00:54 +0000 |
---|---|---|
committer | cagney <cagney@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-05-31 11:00:54 +0000 |
commit | b5495c1d8111073660a316c8630a4132038c603f (patch) | |
tree | 5527ffba0c889f66123a041cb15a288d014cc42c /include/floatformat.h | |
parent | 4645e4a49986bc0009f172b6f5718d002fd59434 (diff) | |
download | gcc-b5495c1d8111073660a316c8630a4132038c603f.tar.gz |
Add field ``name'' to floatformat.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@34292 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'include/floatformat.h')
-rw-r--r-- | include/floatformat.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/floatformat.h b/include/floatformat.h index 90daca21bcb..e4d1d150f26 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. */ |