Commit dea2643c by Jim Wilson

(write_const_num_delay_slots): Output 'rtx insn' not

'rtx *insn' for const_num_delay_slot argument.

From-SVN: r3613
parent afcd8a02
...@@ -5436,7 +5436,7 @@ write_const_num_delay_slots () ...@@ -5436,7 +5436,7 @@ write_const_num_delay_slots ()
if (attr) if (attr)
{ {
printf ("int\nconst_num_delay_slots (insn)\n"); printf ("int\nconst_num_delay_slots (insn)\n");
printf (" rtx *insn;\n"); printf (" rtx insn;\n");
printf ("{\n"); printf ("{\n");
printf (" switch (recog_memoized (insn))\n"); printf (" switch (recog_memoized (insn))\n");
printf (" {\n"); printf (" {\n");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment