Re: Fix real_2expN mode arguments in fixed-value.c

2015-10-29 Thread Richard Biener
On October 29, 2015 4:28:05 PM GMT+01:00, Richard Sandiford wrote: >fixed-value.c was passing a fixed-point mode to the floating-point >real_2expN routine. That didn't cause a problem in practice because >all real_2expN did was check for decimal float modes, but it triggered >a failure with an u

Re: Fix real_2expN mode arguments in fixed-value.c

2015-10-29 Thread Richard Sandiford
Bernd Schmidt writes: > On 10/29/2015 04:28 PM, Richard Sandiford wrote: >> * fixed-value.c (check_real_for_fixed_mode, fixed_from_string) >> (fixed_to_decimal, fixed_convert_from_real) >> (real_convert_from_fixed): Fix mode arguments to real_2expN. > > Passing VOIDmode rather than

Re: Fix real_2expN mode arguments in fixed-value.c

2015-10-29 Thread Bernd Schmidt
On 10/29/2015 04:28 PM, Richard Sandiford wrote: * fixed-value.c (check_real_for_fixed_mode, fixed_from_string) (fixed_to_decimal, fixed_convert_from_real) (real_convert_from_fixed): Fix mode arguments to real_2expN. Passing VOIDmode rather than the real mode is a bit of

Fix real_2expN mode arguments in fixed-value.c

2015-10-29 Thread Richard Sandiford
fixed-value.c was passing a fixed-point mode to the floating-point real_2expN routine. That didn't cause a problem in practice because all real_2expN did was check for decimal float modes, but it triggered a failure with an upcoming patch. Tested on x86_64-linux-gnu, arm-linux-gnueabi and aarch64