diff options
Diffstat (limited to 'gcc/targhooks.c')
-rw-r--r-- | gcc/targhooks.c | 48 |
1 files changed, 2 insertions, 46 deletions
diff --git a/gcc/targhooks.c b/gcc/targhooks.c index c383520314f..5b914e7df41 100644 --- a/gcc/targhooks.c +++ b/gcc/targhooks.c @@ -62,7 +62,6 @@ along with GCC; see the file COPYING3. If not see #include "target.h" #include "tm_p.h" #include "target-def.h" -#include "ggc.h" #include "hard-reg-set.h" #include "regs.h" #include "reload.h" @@ -70,11 +69,11 @@ along with GCC; see the file COPYING3. If not see #include "recog.h" #include "intl.h" #include "opts.h" -#include "gimple.h" +#include "tree-ssa-alias.h" +#include "gimple-expr.h" #include "gimplify.h" #include "stringpool.h" #include "tree-ssanames.h" -#include "tree-ssa-alias.h" #include "insn-codes.h" @@ -1572,28 +1571,6 @@ default_member_type_forces_blk (const_tree, enum machine_mode) { return false; } -rtx -default_load_bounds_for_arg (rtx addr ATTRIBUTE_UNUSED, - rtx ptr ATTRIBUTE_UNUSED, - rtx bnd ATTRIBUTE_UNUSED) -{ - gcc_unreachable (); -} - -void -default_store_bounds_for_arg (rtx val ATTRIBUTE_UNUSED, - rtx addr ATTRIBUTE_UNUSED, - rtx bounds ATTRIBUTE_UNUSED, - rtx to ATTRIBUTE_UNUSED) -{ - gcc_unreachable (); -} - -tree -default_fn_abi_va_list_bounds_size (tree fndecl ATTRIBUTE_UNUSED) -{ - return integer_zero_node; -} /* Default version of canonicalize_comparison. */ @@ -1719,27 +1696,6 @@ std_gimplify_va_arg_expr (tree valist, tree type, gimple_seq *pre_p, return build_va_arg_indirect_ref (addr); } -tree -default_chkp_bound_type (void) -{ - tree res = make_node (POINTER_BOUNDS_TYPE); - TYPE_PRECISION (res) = TYPE_PRECISION (size_type_node) * 2; - layout_type (res); - return res; -} - -enum machine_mode -default_chkp_bound_mode (void) -{ - return VOIDmode; -} - -tree -default_builtin_chkp_function (unsigned int fcode ATTRIBUTE_UNUSED) -{ - return NULL_TREE; -} - /* An implementation of TARGET_CAN_USE_DOLOOP_P for targets that do not support nested low-overhead loops. */ |