Commit d1163987 by Bob Wilson Committed by Bob Wilson

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

From-SVN: r134673
parent a5e11364
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
......
......@@ -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:
......
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