+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
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))
{
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. */
{