Commit 98ea7437 by Richard Guenther Committed by Richard Biener

i386.md (lrint<mode>2): Use temporary instead of clobbering non-existent memory.

2005-07-19  Richard Guenther  <rguenther@suse.de>

	* config/i386/i386.md (lrint<mode>2): Use temporary
	instead of clobbering non-existent memory.

From-SVN: r102154
parent dfea6c85
2005-07-19 Richard Guenther <rguenther@suse.de>
* config/i386/i386.md (lrint<mode>2): Use temporary
instead of clobbering non-existent memory.
2005-07-19 Ben Elliston <bje@au.ibm.com> 2005-07-19 Ben Elliston <bje@au.ibm.com>
* bt-load.c (link_btr_uses): Fix uninitialised warnings. * bt-load.c (link_btr_uses): Fix uninitialised warnings.
......
...@@ -16570,9 +16570,9 @@ ...@@ -16570,9 +16570,9 @@
emit_insn (gen_fist<mode>2 (operands[0], operands[1])); emit_insn (gen_fist<mode>2 (operands[0], operands[1]));
else else
{ {
operands[2] = assign_386_stack_local (<MODE>mode, SLOT_TEMP); rtx op = assign_386_stack_local (<MODE>mode, SLOT_TEMP);
emit_insn (gen_fist<mode>2_with_temp (operands[0], operands[1], emit_insn (gen_fist<mode>2_with_temp (operands[0], operands[1],
operands[2])); op));
} }
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