mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-12-02 16:23:56 +08:00
* genoutput.c (output_get_insn_name): Handle NOOP_MOVE_INSN_CODE.
From-SVN: r62552
This commit is contained in:
parent
46847aa6e7
commit
a0f0e96302
@ -1,3 +1,7 @@
|
||||
2003-02-07 Segher Boessenkool <segher@koffie.nl>
|
||||
|
||||
* genoutput.c (output_get_insn_name): Handle NOOP_MOVE_INSN_CODE.
|
||||
|
||||
2003-02-07 Roger Sayle <roger@eyesopen.com>
|
||||
|
||||
* builtin-types.def (BT_FN_FLOAT_FLOAT_FLOAT): New built-in type.
|
||||
|
@ -419,7 +419,10 @@ output_get_insn_name ()
|
||||
printf ("get_insn_name (code)\n");
|
||||
printf (" int code;\n");
|
||||
printf ("{\n");
|
||||
printf (" return insn_data[code].name;\n");
|
||||
printf (" if (code == NOOP_MOVE_INSN_CODE)\n");
|
||||
printf (" return \"NOOP_MOVE\";\n");
|
||||
printf (" else\n");
|
||||
printf (" return insn_data[code].name;\n");
|
||||
printf ("}\n");
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user