Commit 2bf47a10 by Jim Wilson Committed by Jim Wilson

Fix abort when passing 1.0L as unnamed argument.

	* config/ia64/ia64.md (movtf): Change DImode to TFmode in calls to
	operand_subword.

From-SVN: r40951
parent 400f4e55
2001-03-28 Jim Wilson <wilson@redhat.com>
* config/ia64/ia64.md (movtf): Change DImode to TFmode in calls to
operand_subword.
2001-03-28 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> 2001-03-28 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* toplev.h (fatal_error): Add ATTRIBUTE_NORETURN. * toplev.h (fatal_error): Add ATTRIBUTE_NORETURN.
......
...@@ -707,9 +707,9 @@ ...@@ -707,9 +707,9 @@
if (GET_CODE (operands[1]) == CONST_DOUBLE) if (GET_CODE (operands[1]) == CONST_DOUBLE)
{ {
emit_move_insn (gen_rtx_REG (DImode, REGNO (operands[0])), emit_move_insn (gen_rtx_REG (DImode, REGNO (operands[0])),
operand_subword (operands[1], 0, 0, DImode)); operand_subword (operands[1], 0, 0, TFmode));
emit_move_insn (gen_rtx_REG (DImode, REGNO (operands[0]) + 1), emit_move_insn (gen_rtx_REG (DImode, REGNO (operands[0]) + 1),
operand_subword (operands[1], 1, 0, DImode)); operand_subword (operands[1], 1, 0, TFmode));
DONE; DONE;
} }
......
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