diff options
author | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-07-19 20:54:04 +0000 |
---|---|---|
committer | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-07-19 20:54:04 +0000 |
commit | 17068960cb11eae5c3edc1b54cd53b8a78c83c3e (patch) | |
tree | 811c94908d68ebec4a34866b49b1402362347eac /opcodes/hppa-dis.c | |
parent | da0f62a0455179e2d9c6fb8a08518568f12d29bb (diff) | |
download | gdb-17068960cb11eae5c3edc1b54cd53b8a78c83c3e.zip gdb-17068960cb11eae5c3edc1b54cd53b8a78c83c3e.tar.gz gdb-17068960cb11eae5c3edc1b54cd53b8a78c83c3e.tar.bz2 |
* hppa-dis.c (float_format_names): 10 is undefined, and 11 is quad.
Diffstat (limited to 'opcodes/hppa-dis.c')
-rw-r--r-- | opcodes/hppa-dis.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/opcodes/hppa-dis.c b/opcodes/hppa-dis.c index 3026996..2eb1780 100644 --- a/opcodes/hppa-dis.c +++ b/opcodes/hppa-dis.c @@ -18,8 +18,9 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#include "dis-asm.h" +#include <ansidecl.h> #include "sysdep.h" +#include "dis-asm.h" #include "opcode/hppa.h" /* Initializer for an array of names of registers. @@ -91,7 +92,7 @@ static const char short_ldst_compl_names[][4] = {"", ",ma", "", ",mb"}; static const char *const short_bytes_compl_names[] = { "", ",b,m", ",e", ",e,m" }; -static const char *const float_format_names[] = {",sgl", ",dbl", ",quad"}; +static const char *const float_format_names[] = {",sgl", ",dbl", "", ",quad"}; static const char float_comp_names[][8] = { ",false?", ",false", ",?", ",!<=>", ",=", ",=t", ",?=", ",!<>", |