aboutsummaryrefslogtreecommitdiff
path: root/gcc/machmode.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/machmode.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/machmode.h')
-rw-r--r--gcc/machmode.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/gcc/machmode.h b/gcc/machmode.h
index b3e79ca..73c45be 100644
--- a/gcc/machmode.h
+++ b/gcc/machmode.h
@@ -893,4 +893,22 @@ namespace mode_iterator
mode_iterator::iterate_p (&(ITERATOR)); \
mode_iterator::get_2xwider (&(ITERATOR)))
+template<typename T>
+void
+gt_ggc_mx (pod_mode<T> *)
+{
+}
+
+template<typename T>
+void
+gt_pch_nx (pod_mode<T> *)
+{
+}
+
+template<typename T>
+void
+gt_pch_nx (pod_mode<T> *, void (*) (void *, void *), void *)
+{
+}
+
#endif /* not HAVE_MACHINE_MODES */