On 10/22/2015 01:59 PM, Trevor Saunders wrote:

I've verified this fixes the 47 newly failing targets in config-list.mk and
survives the usual bootstrap & comparison test on x86_64-linux-gnu.

thanks for taking care of this.
No problem.


+write_dummy_eligible_delay (FILE *outf, const char *kind)
+{
+  /* Write function prelude.  */
+
+  fprintf (outf, "int\n");
+  fprintf (outf, "eligible_for_%s (rtx_insn *delay_insn ATTRIBUTE_UNUSED,\n"
+                "    int slot ATTRIBUTE_UNUSED,\n"
+                "    rtx_insn *candidate_insn ATTRIBUTE_UNUSED,\n"
+                "    int flags ATTRIBUTE_UNUSED)\n",
+          kind);

Couldn't you just leave the arguments unnamed as a simpler way to avoid
unused warnings?
Had I known about that feature, I would have considered it! I know for the future though.

jeff

Reply via email to