Commit 18a53b78 by Richard Stallman

*** empty log message ***

From-SVN: r1638
parent c9ebacb8
......@@ -667,6 +667,12 @@ push_reload (in, out, inloc, outloc, class,
if (in != 0)
class = PREFERRED_RELOAD_CLASS (in, class);
/* Output reloads may need analagous treatment, different in detail. */
#ifdef PREFERRED_OUTPUT_RELOAD_CLASS
if (out != 0)
class = PREFERRED_OUTPUT_RELOAD_CLASS (out, class);
#endif
/* Make sure we use a class that can handle the actual pseudo
inside any subreg. For example, on the 386, QImode regs
can appear within SImode subregs. Although GENERAL_REGS
......
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