mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-04 20:01:21 +08:00
fixed-value.c (fixed_from_string): Restore use of elt (1) in place of uhigh ().
2017-03-03 Richard Biener <rguenther@suse.de> * fixed-value.c (fixed_from_string): Restore use of elt (1) in place of uhigh (). (fixed_convert_from_real): Likewise. From-SVN: r245867
This commit is contained in:
parent
30d309aaf1
commit
98fa4d3c02
@ -1,3 +1,9 @@
|
||||
2017-03-03 Richard Biener <rguenther@suse.de>
|
||||
|
||||
* fixed-value.c (fixed_from_string): Restore use of elt (1)
|
||||
in place of uhigh ().
|
||||
(fixed_convert_from_real): Likewise.
|
||||
|
||||
2017-03-03 Uros Bizjak <ubizjak@gmail.com>
|
||||
|
||||
PR target/79514
|
||||
|
@ -131,7 +131,7 @@ fixed_from_string (FIXED_VALUE_TYPE *f, const char *str, machine_mode mode)
|
||||
wide_int w = real_to_integer (&fixed_value, &fail,
|
||||
GET_MODE_PRECISION (mode));
|
||||
f->data.low = w.ulow ();
|
||||
f->data.high = w.uhigh ();
|
||||
f->data.high = w.elt (1);
|
||||
|
||||
if (temp == FIXED_MAX_EPS && ALL_FRACT_MODE_P (f->mode))
|
||||
{
|
||||
@ -1050,7 +1050,7 @@ fixed_convert_from_real (FIXED_VALUE_TYPE *f, machine_mode mode,
|
||||
wide_int w = real_to_integer (&fixed_value, &fail,
|
||||
GET_MODE_PRECISION (mode));
|
||||
f->data.low = w.ulow ();
|
||||
f->data.high = w.uhigh ();
|
||||
f->data.high = w.elt (1);
|
||||
temp = check_real_for_fixed_mode (&real_value, mode);
|
||||
if (temp == FIXED_UNDERFLOW) /* Minimum. */
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user