diff options
author | Eric Botcazou <ebotcazou@libertysurf.fr> | 2004-11-24 09:39:34 +0100 |
---|---|---|
committer | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2004-11-24 08:39:34 +0000 |
commit | 033797e23c3723dd1cc7911981e3747cc0dda6e3 (patch) | |
tree | eee54f5749132c980a4ba899e0922e67ffb37f13 /gcc/doc/tm.texi | |
parent | 278d4cc485b5d7a133e5ec34022d92d06d7da9c9 (diff) | |
download | gcc-033797e23c3723dd1cc7911981e3747cc0dda6e3.zip gcc-033797e23c3723dd1cc7911981e3747cc0dda6e3.tar.gz gcc-033797e23c3723dd1cc7911981e3747cc0dda6e3.tar.bz2 |
target.h (late_rtl_prologue_epilogue): Remove.
* target.h (late_rtl_prologue_epilogue): Remove.
* target-def.h (TARGET_LATE_RTL_PROLOGUE_EPILOGUE): Remove.
* system.h: Poison TARGET_LATE_RTL_PROLOGUE_EPILOGUE.
* passes.c (rest_of_handle_prologue_epilogue): Remove and move
remaining bits to...
(rest_of_handle_flow2): ...here.
(rest_of_compilation): Remove call to rest_of_handle_prologue_epilogue.
* doc/tm.texi (TARGET_LATE_RTL_PROLOGUE_EPILOGUE): Remove.
From-SVN: r91140
Diffstat (limited to 'gcc/doc/tm.texi')
-rw-r--r-- | gcc/doc/tm.texi | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/gcc/doc/tm.texi b/gcc/doc/tm.texi index 409559e..339a41d 100644 --- a/gcc/doc/tm.texi +++ b/gcc/doc/tm.texi @@ -4263,16 +4263,6 @@ arguments that a function should pop. @xref{Scalar Return}. @c tell? --mew 5feb93 @end deftypefn -@deftypefn {Target Hook} bool TARGET_LATE_RTL_PROLOGUE_EPILOGUE -If set to @code{true}, it instructs the compiler to emit the RTL prologue -and epilogue later in the game than usual, namely after all passes that -modify the instructions (and not merely reorder them) have been run. In -particular, the C variable @code{current_function_uses_only_leaf_regs} is -valid at that point. This can be used on machines that have "register -windows" to optimize away the regular "push" on the register stack. -@xref{Leaf Functions}. -@end deftypefn - @itemize @bullet @item @findex current_function_pretend_args_size |