Change semantic function name to semantic_<INSN>_<FMT> instead of

semantic_<FMT>_<INSN>.
This commit is contained in:
Andrew Cagney 1997-09-19 00:50:24 +00:00
parent 60fe0e06a8
commit 6a4c8f1e29
2 changed files with 8 additions and 3 deletions

View File

@ -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

View File

@ -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);