diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2001-01-09 17:00:21 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2001-01-09 17:00:21 +0000 |
commit | 4a9f416d92db703b7396482b62889793a90fdb94 (patch) | |
tree | f61f30246c1e1d900ea878847268e79474c5abb3 /opcodes/cgen-dis.in | |
parent | 183d61753fa3ad6e6ddc990a2bee09381e27ccb6 (diff) | |
download | gdb-4a9f416d92db703b7396482b62889793a90fdb94.zip gdb-4a9f416d92db703b7396482b62889793a90fdb94.tar.gz gdb-4a9f416d92db703b7396482b62889793a90fdb94.tar.bz2 |
2001-01-09 Jeff Johnston <jjohnstn@redhat.com>
* cgen-asm.in (parse_insn_normal): Changed syn to be
CGEN_SYNTAX_CHAR_TYPE. Changed all references to *syn
as character to use CGEN_SYNTAX_CHAR macro and all comparisons
to '\0' to use 0 instead.
* cgen-dis.in (print_insn_normal): Ditto.
* cgen-ibld.in (insert_insn_normal, extract_insn_normal): Ditto.
Diffstat (limited to 'opcodes/cgen-dis.in')
-rw-r--r-- | opcodes/cgen-dis.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/opcodes/cgen-dis.in b/opcodes/cgen-dis.in index 9d25c1a..aa6278c 100644 --- a/opcodes/cgen-dis.in +++ b/opcodes/cgen-dis.in @@ -4,7 +4,7 @@ THIS FILE IS MACHINE GENERATED WITH CGEN. - the resultant file is machine generated, cgen-dis.in isn't -Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation, Inc. +Copyright (C) 1996, 1997, 1998, 1999, 2001 Free Software Foundation, Inc. This file is part of the GNU Binutils and GDB, the GNU debugger. @@ -164,7 +164,7 @@ print_insn_normal (cd, dis_info, insn, fields, pc, length) { const CGEN_SYNTAX *syntax = CGEN_INSN_SYNTAX (insn); disassemble_info *info = (disassemble_info *) dis_info; - const unsigned char *syn; + const CGEN_SYNTAX_CHAR_TYPE *syn; CGEN_INIT_PRINT (cd); |