mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-12-01 07:50:49 +00:00
Change semantic function name to semantic_<INSN>_<FMT> instead of
semantic_<FMT>_<INSN>.
This commit is contained in:
parent
60fe0e06a8
commit
6a4c8f1e29
@ -1,3 +1,8 @@
|
||||
Fri Sep 19 10:36:30 1997 Andrew Cagney <cagney@b1.cygnus.com>
|
||||
|
||||
* igen.c (print_function_name): Put the format name after the
|
||||
function / instruction name, not before.
|
||||
|
||||
Tue Sep 16 11:01:07 1997 Andrew Cagney <cagney@b1.cygnus.com>
|
||||
|
||||
* gen.c (insns_bit_useless): Don't treat string fields restricted
|
||||
|
@ -268,6 +268,9 @@ print_function_name (lf *file,
|
||||
nr += lf_printf (file, "_");
|
||||
}
|
||||
|
||||
/* the function name */
|
||||
nr += print_c_name (file, basename);
|
||||
|
||||
/* the format name if available */
|
||||
if (format_name != NULL)
|
||||
{
|
||||
@ -275,9 +278,6 @@ print_function_name (lf *file,
|
||||
nr += lf_printf (file, "_");
|
||||
}
|
||||
|
||||
/* the function name */
|
||||
nr += print_c_name (file, basename);
|
||||
|
||||
/* the suffix */
|
||||
nr += print_opcode_bits (file, expanded_bits);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user