Commit 1cbae84f by Paul Brook Committed by Paul Brook

m68k.c (output_move_const_into_data_reg): Output correct mnemonic for mvz and mvs.

2006-01-16  Paul Brook  <paul@codesourcery.com>

	* config/m68k/m68k.c (output_move_const_into_data_reg):
	Output correct mnemonic for mvz and mvs.

From-SVN: r109751
parent 38109dab
2006-01-16 Paul Brook <paul@codesourcery.com>
* config/m68k/m68k.c (output_move_const_into_data_reg):
Output correct mnemonic for mvz and mvs.
2006-01-16 Eric Botcazou <ebotcazou@adacore.com>
Roger Sayle <roger@eyesopen.com>
......
......@@ -1662,9 +1662,9 @@ output_move_const_into_data_reg (rtx *operands)
switch (const_method (operands[1]))
{
case MVZ:
return "mvsw %1,%0";
case MVS:
return "mvzw %1,%0";
case MVS:
return "mvsw %1,%0";
case MOVQ:
return "moveq %1,%0";
case NOTB:
......
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