Commit f03d897a by Richard Henderson Committed by Richard Henderson

* optabs.c (init_optabs): Init {fma,fms,fnma,fnms}_optab properly.

From-SVN: r166643
parent d48e78d6
2010-11-11 Richard Henderson <rth@redhat.com>
* optabs.c (init_optabs): Init {fma,fms,fnma,fnms}_optab properly.
2010-11-11 Richard Henderson <rth@redhat.com>
* config/fused-madd.opt: New file.
* config.gcc [i386-*, x86_64-*] (extra_options): Use it.
* config/i386/i386.c (ix86_extra_costs): Handle FMA.
......@@ -6180,6 +6180,10 @@ init_optabs (void)
init_optab (umax_optab, UMAX);
init_optab (pow_optab, UNKNOWN);
init_optab (atan2_optab, UNKNOWN);
init_optab (fma_optab, FMA);
init_optab (fms_optab, UNKNOWN);
init_optab (fnma_optab, UNKNOWN);
init_optab (fnms_optab, UNKNOWN);
/* These three have codes assigned exclusively for the sake of
have_insn_for. */
......
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