diff options
author | Richard Sandiford <richard.sandiford@arm.com> | 2019-08-15 14:26:14 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@gcc.gnu.org> | 2019-08-15 14:26:14 +0000 |
commit | 06b5889c434b941804d5592cd4fc8946b25c1c4b (patch) | |
tree | f091e3e4a77470f511bc063fa3a808d603ff98f8 /gcc/doc | |
parent | 8bc1fac71de3abab36b9e58870fdf4e936650a27 (diff) | |
download | gcc-06b5889c434b941804d5592cd4fc8946b25c1c4b.zip gcc-06b5889c434b941804d5592cd4fc8946b25c1c4b.tar.gz gcc-06b5889c434b941804d5592cd4fc8946b25c1c4b.tar.bz2 |
Remove TARGET_SETUP_INCOMING_VARARG_BOUNDS
TARGET_SETUP_INCOMING_VARARG_BOUNDS seems to be an unused vestige of the
MPX support.
2019-08-15 Richard Sandiford <richard.sandiford@arm.com>
gcc/
* target.def (setup_incoming_vararg_bounds): Remove.
* doc/tm.texi.in (TARGET_SETUP_INCOMING_VARARG_BOUNDS): Remove.
* doc/tm.texi: Regenerate.
* targhooks.c (default_setup_incoming_vararg_bounds): Delete.
* targhooks.h (default_setup_incoming_vararg_bounds): Likewise.
* config/i386/i386.c (ix86_setup_incoming_vararg_bounds): Likewise.
(TARGET_SETUP_INCOMING_VARARG_BOUNDS): Likewise.
From-SVN: r274539
Diffstat (limited to 'gcc/doc')
-rw-r--r-- | gcc/doc/tm.texi | 6 | ||||
-rw-r--r-- | gcc/doc/tm.texi.in | 2 |
2 files changed, 0 insertions, 8 deletions
diff --git a/gcc/doc/tm.texi b/gcc/doc/tm.texi index 89990cb..f05b311 100644 --- a/gcc/doc/tm.texi +++ b/gcc/doc/tm.texi @@ -5314,12 +5314,6 @@ This hook is used by expand pass to emit insn to store @var{bounds} returned by function call into @var{slot}. @end deftypefn -@deftypefn {Target Hook} void TARGET_SETUP_INCOMING_VARARG_BOUNDS (cumulative_args_t @var{args_so_far}, machine_mode @var{mode}, tree @var{type}, int *@var{pretend_args_size}, int @var{second_time}) -Use it to store bounds for anonymous register arguments stored -into the stack. Arguments meaning is similar to -@code{TARGET_SETUP_INCOMING_VARARGS}. -@end deftypefn - @node Trampolines @section Support for Nested Functions @cindex support for nested functions diff --git a/gcc/doc/tm.texi.in b/gcc/doc/tm.texi.in index b4d57b8..98e7100 100644 --- a/gcc/doc/tm.texi.in +++ b/gcc/doc/tm.texi.in @@ -3785,8 +3785,6 @@ These machine description macros help implement varargs: @hook TARGET_STORE_RETURNED_BOUNDS -@hook TARGET_SETUP_INCOMING_VARARG_BOUNDS - @node Trampolines @section Support for Nested Functions @cindex support for nested functions |