diff options
author | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-11-21 10:18:18 +0000 |
---|---|---|
committer | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-11-21 10:18:18 +0000 |
commit | ddb1be658b6726ca8727a5765216944fd33f54ad (patch) | |
tree | fcd1c870003dcec43a509b53da24f9532ca4a844 /gcc/fixed-value.c | |
parent | 2dc10fae5c32a9fc6d428e5be8a7e24e3a8ea8ff (diff) | |
download | gcc-ddb1be658b6726ca8727a5765216944fd33f54ad.tar.gz |
Remove trailing whitespace. Add missing dbxout.c hunk.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/wide-int@205205 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/fixed-value.c')
-rw-r--r-- | gcc/fixed-value.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/fixed-value.c b/gcc/fixed-value.c index 5341029f8aa..03fd599cdea 100644 --- a/gcc/fixed-value.c +++ b/gcc/fixed-value.c @@ -159,7 +159,7 @@ fixed_to_decimal (char *str, const FIXED_VALUE_TYPE *f_orig, signop sgn = UNSIGNED_FIXED_POINT_MODE_P (f_orig->mode) ? UNSIGNED : SIGNED; real_2expN (&base_value, GET_MODE_FBIT (f_orig->mode), f_orig->mode); - real_from_integer (&real_value, VOIDmode, + real_from_integer (&real_value, VOIDmode, wide_int::from (f_orig->data, GET_MODE_PRECISION (f_orig->mode), sgn), sgn); @@ -1105,7 +1105,7 @@ real_convert_from_fixed (REAL_VALUE_TYPE *r, enum machine_mode mode, signop sgn = UNSIGNED_FIXED_POINT_MODE_P (f->mode) ? UNSIGNED : SIGNED; real_2expN (&base_value, GET_MODE_FBIT (f->mode), f->mode); - real_from_integer (&fixed_value, VOIDmode, + real_from_integer (&fixed_value, VOIDmode, wide_int::from (f->data, GET_MODE_PRECISION (f->mode), sgn), sgn); real_arithmetic (&real_value, RDIV_EXPR, &fixed_value, &base_value); |