Commit 213062d0 by Richard Stallman

(init_reload): Add entries in 'reload_in_optab' for QFmode and HFmode.

From-SVN: r3135
parent e77be1b8
...@@ -410,6 +410,14 @@ init_reload () ...@@ -410,6 +410,14 @@ init_reload ()
if (HAVE_reload_inti) if (HAVE_reload_inti)
reload_in_optab[(int) TImode] = CODE_FOR_reload_inti; reload_in_optab[(int) TImode] = CODE_FOR_reload_inti;
#endif #endif
#ifdef HAVE_reload_inqf
if (HAVE_reload_inqf)
reload_in_optab[(int) QFmode] = CODE_FOR_reload_inqf;
#endif
#ifdef HAVE_reload_inhf
if (HAVE_reload_inhf)
reload_in_optab[(int) HFmode] = CODE_FOR_reload_inhf;
#endif
#ifdef HAVE_reload_insf #ifdef HAVE_reload_insf
if (HAVE_reload_insf) if (HAVE_reload_insf)
reload_in_optab[(int) SFmode] = CODE_FOR_reload_insf; reload_in_optab[(int) SFmode] = CODE_FOR_reload_insf;
...@@ -447,6 +455,14 @@ init_reload () ...@@ -447,6 +455,14 @@ init_reload ()
if (HAVE_reload_outti) if (HAVE_reload_outti)
reload_out_optab[(int) TImode] = CODE_FOR_reload_outti; reload_out_optab[(int) TImode] = CODE_FOR_reload_outti;
#endif #endif
#ifdef HAVE_reload_outqf
if (HAVE_reload_outqf)
reload_out_optab[(int) QFmode] = CODE_FOR_reload_outqf;
#endif
#ifdef HAVE_reload_outhf
if (HAVE_reload_outhf)
reload_out_optab[(int) HFmode] = CODE_FOR_reload_outhf;
#endif
#ifdef HAVE_reload_outsf #ifdef HAVE_reload_outsf
if (HAVE_reload_outsf) if (HAVE_reload_outsf)
reload_out_optab[(int) SFmode] = CODE_FOR_reload_outsf; reload_out_optab[(int) SFmode] = CODE_FOR_reload_outsf;
......
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