Commit b7b28c53 by Jan Hubicka Committed by Jan Hubicka

* i386.c (generic_memcpy, generic_memset): Fix 32bit template.

From-SVN: r202747
parent 83ae86f5
2013-09-19 Jan Hubicka <jh@suse.cz>
* i386.c (generic_memcpy, generic_memset): Fix 32bit template.
2013-09-17 Jeff Law <law@redhat.com> 2013-09-17 Jeff Law <law@redhat.com>
* tree-ssa-dom.c (record_temporary_equivalences): New function * tree-ssa-dom.c (record_temporary_equivalences): New function
......
...@@ -1648,11 +1648,13 @@ struct processor_costs slm_cost = { ...@@ -1648,11 +1648,13 @@ struct processor_costs slm_cost = {
and btver1 (and newer chips). */ and btver1 (and newer chips). */
static stringop_algs generic_memcpy[2] = { static stringop_algs generic_memcpy[2] = {
DUMMY_STRINGOP_ALGS, {libcall, {{32, loop, false}, {8192, rep_prefix_4_byte, false},
{-1, libcall, false}}},
{libcall, {{32, loop, false}, {8192, rep_prefix_8_byte, false}, {libcall, {{32, loop, false}, {8192, rep_prefix_8_byte, false},
{-1, libcall, false}}}}; {-1, libcall, false}}}};
static stringop_algs generic_memset[2] = { static stringop_algs generic_memset[2] = {
DUMMY_STRINGOP_ALGS, {libcall, {{32, loop, false}, {8192, rep_prefix_4_byte, false},
{-1, libcall, false}}},
{libcall, {{32, loop, false}, {8192, rep_prefix_8_byte, false}, {libcall, {{32, loop, false}, {8192, rep_prefix_8_byte, false},
{-1, libcall, false}}}}; {-1, libcall, false}}}};
static const static const
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