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
This commit is contained in:
Richard Guenther 2005-07-19 08:01:55 +00:00 committed by Richard Biener
parent dfea6c85d8
commit 98ea74375f
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
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>
* bt-load.c (link_btr_uses): Fix uninitialised warnings.

View File

@ -16570,9 +16570,9 @@
emit_insn (gen_fist<mode>2 (operands[0], operands[1]));
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],
operands[2]));
op));
}
DONE;
})