aboutsummaryrefslogtreecommitdiff
path: root/gcc/fixed-value.h
diff options
context:
space:
mode:
authorRichard Sandiford <richard.sandiford@linaro.org>2017-08-30 11:20:55 +0000
committerRichard Sandiford <rsandifo@gcc.gnu.org>2017-08-30 11:20:55 +0000
commit382615c64cad28fb4aa0566b25b3f1921b3d6a3d (patch)
tree046a66a93146a14b7764184e569dfeb06b48ad9d /gcc/fixed-value.h
parent79d22165ea45e89283ccf147d65cbf66548838da (diff)
downloadgcc-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/fixed-value.h')
-rw-r--r--gcc/fixed-value.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/fixed-value.h b/gcc/fixed-value.h
index cc2180b..1beb774 100644
--- a/gcc/fixed-value.h
+++ b/gcc/fixed-value.h
@@ -22,8 +22,8 @@ along with GCC; see the file COPYING3. If not see
struct GTY(()) fixed_value
{
- double_int data; /* Store data up to 2 wide integers. */
- machine_mode mode; /* Use machine mode to know IBIT and FBIT. */
+ double_int data; /* Store data up to 2 wide integers. */
+ scalar_mode_pod mode; /* Use machine mode to know IBIT and FBIT. */
};
#define FIXED_VALUE_TYPE struct fixed_value