Commit 553eb139 by Richard Henderson Committed by Richard Henderson

alpha.c (alpha_expand_mov): Use correct mode for force_const_mem.

        * config/alpha/alpha.c (alpha_expand_mov): Use correct mode
        for force_const_mem.

From-SVN: r61309
parent dd1b7476
2003-01-14 Richard Henderson <rth@redhat.com>
* config/alpha/alpha.c (alpha_expand_mov): Use correct mode
for force_const_mem.
2003-01-14 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* genattr.c (main): Rearrange output to avoid prototype warning.
......
......@@ -3091,7 +3091,7 @@ alpha_expand_mov (mode, operands)
}
/* Otherwise we've nothing left but to drop the thing to memory. */
operands[1] = force_const_mem (DImode, operands[1]);
operands[1] = force_const_mem (mode, operands[1]);
if (reload_in_progress)
{
emit_move_insn (operands[0], XEXP (operands[1], 0));
......
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