* optabs.c (expand_float): Fix REG_EQUAL for UNSIGNED_FLOAT libcall.

From-SVN: r134673
This commit is contained in:
Bob Wilson 2008-04-25 18:20:02 +00:00 committed by Bob Wilson
parent a5e11364a8
commit d116398717
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2008-04-25 Bob Wilson <bob.wilson@acm.org>
* optabs.c (expand_float): Fix REG_EQUAL for UNSIGNED_FLOAT libcall.
2008-04-25 H.J. Lu <hongjiu.lu@intel.com>
* config/i386/sse.md (mov<mode>): Replace SSEMODEI with

View File

@ -5270,7 +5270,8 @@ expand_float (rtx to, rtx from, int unsignedp)
end_sequence ();
emit_libcall_block (insns, target, value,
gen_rtx_FLOAT (GET_MODE (to), from));
gen_rtx_fmt_e (unsignedp ? UNSIGNED_FLOAT : FLOAT,
GET_MODE (to), from));
}
done: