diff options
author | Richard Sandiford <richard.sandiford@linaro.org> | 2017-08-30 11:20:55 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@gcc.gnu.org> | 2017-08-30 11:20:55 +0000 |
commit | 382615c64cad28fb4aa0566b25b3f1921b3d6a3d (patch) | |
tree | 046a66a93146a14b7764184e569dfeb06b48ad9d /gcc/fold-const.c | |
parent | 79d22165ea45e89283ccf147d65cbf66548838da (diff) | |
download | gcc-382615c64cad28fb4aa0566b25b3f1921b3d6a3d.zip gcc-382615c64cad28fb4aa0566b25b3f1921b3d6a3d.tar.gz gcc-382615c64cad28fb4aa0566b25b3f1921b3d6a3d.tar.bz2 |
[76/77] Add a scalar_mode_pod class
This patch adds a scalar_mode_pod class and uses it to
replace the machine_mode in fixed_value.
2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
Alan Hayward <alan.hayward@arm.com>
David Sherwood <david.sherwood@arm.com>
gcc/
* coretypes.h (scalar_mode_pod): New typedef.
* gdbhooks.py (build_pretty_printer): Handle it.
* machmode.h (gt_ggc_mx, gt_pch_nx): New functions.
* fixed-value.h (fixed_value::mode): Change type to scalar_mode_pod.
* fold-const.c (fold_convert_const_int_from_fixed): Use scalar_mode.
* tree-streamer-in.c (unpack_ts_fixed_cst_value_fields): Use
as_a <scalar_mode>.
Co-Authored-By: Alan Hayward <alan.hayward@arm.com>
Co-Authored-By: David Sherwood <david.sherwood@arm.com>
From-SVN: r251526
Diffstat (limited to 'gcc/fold-const.c')
-rw-r--r-- | gcc/fold-const.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/fold-const.c b/gcc/fold-const.c index c921f1c..f3c84a8 100644 --- a/gcc/fold-const.c +++ b/gcc/fold-const.c @@ -1944,7 +1944,7 @@ fold_convert_const_int_from_fixed (tree type, const_tree arg1) { tree t; double_int temp, temp_trunc; - machine_mode mode; + scalar_mode mode; /* Right shift FIXED_CST to temp by fbit. */ temp = TREE_FIXED_CST (arg1).data; |